@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.
@@ -1,5 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
- import { Color } from 'src/types/color';
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,4 +1,4 @@
1
- import { Color } from 'src/types';
1
+ import { Color } from '../../types';
2
2
  export interface DropdownTriggerProps extends React.ComponentPropsWithRef<'button'> {
3
3
  /**
4
4
  * Dropdown trigger title
@@ -1,4 +1,4 @@
1
- import { MediaLibraryType } from 'src/modules/multimedia';
1
+ import { MediaLibraryType } from '../../modules/multimedia';
2
2
  export interface MediaProps {
3
3
  name: string;
4
4
  url: string;
@@ -1,4 +1,4 @@
1
- import { MediaLibraryType } from 'src/modules/multimedia';
1
+ import { MediaLibraryType } from '../../modules/multimedia';
2
2
  export declare const MediaWrapper: ({ mediaUrl, mediaType, mimeType, scale, }: {
3
3
  mediaUrl: string;
4
4
  mediaType: MediaLibraryType;
@@ -1,2 +1,2 @@
1
1
  export { default as OnboardingModal } from './OnboardingModal';
2
- export type { DisplayRuleCheckResult, OnboardingModalRef, OnboardingProps, } from './OnboardingModal';
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-b2school.20260608181736",
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-b2school.20260608181736",
138
- "@edifice.io/tiptap-extensions": "2.5.22-develop-b2school.20260608181736",
139
- "@edifice.io/utilities": "2.5.22-develop-b2school.20260608181736"
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-b2school.20260608181736",
171
- "@edifice.io/config": "2.5.22-develop-b2school.20260608181736"
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": "pnpm run format:write && pnpm run format:check",
191
- "format:check": "npx prettier --check \"src/**/*.{ts,tsx}\"",
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"