@edifice.io/react 2.5.22-develop-b2school.20260608181736 → 2.5.22-develop.20260615185517

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 +1 @@
1
- export { useScreeb, type ScreebProperties, type ScreebSurveyHooks } from './useScreeb';
1
+ export { useScreeb, type ScreebProperties, type ScreebSurveyHooks, } from './useScreeb';
@@ -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.20260615185517",
4
4
  "description": "Edifice React Library",
5
5
  "keywords": [
6
6
  "react",
@@ -74,6 +74,7 @@
74
74
  ],
75
75
  "dependencies": {
76
76
  "@ant-design/icons": "5.4.0",
77
+ "@screeb/sdk-browser": "0.5.0",
77
78
  "@screeb/sdk-react": "0.6.0",
78
79
  "@dnd-kit/core": "6.3.1",
79
80
  "@dnd-kit/sortable": "8.0.0",
@@ -134,9 +135,9 @@
134
135
  "react-slugify": "3.0.3",
135
136
  "swiper": "10.1.0",
136
137
  "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"
138
+ "@edifice.io/bootstrap": "2.5.22-develop.20260615185517",
139
+ "@edifice.io/tiptap-extensions": "2.5.22-develop.20260615185517",
140
+ "@edifice.io/utilities": "2.5.22-develop.20260615185517"
140
141
  },
141
142
  "devDependencies": {
142
143
  "@babel/plugin-transform-react-pure-annotations": "7.27.1",
@@ -167,8 +168,8 @@
167
168
  "vite": "5.4.14",
168
169
  "vite-plugin-dts": "4.5.4",
169
170
  "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"
171
+ "@edifice.io/client": "2.5.22-develop.20260615185517",
172
+ "@edifice.io/config": "2.5.22-develop.20260615185517"
172
173
  },
173
174
  "peerDependencies": {
174
175
  "@react-spring/web": "9.7.5",
@@ -187,9 +188,8 @@
187
188
  "build:icons": "svgr src/modules/icons/assets --config-file ./svgr.config.cjs",
188
189
  "build:analyze": "vite build --mode analyze",
189
190
  "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}\"",
191
+ "format": "prettier --check \"src/**/*.{ts,tsx}\"",
192
+ "format:write": "prettier --write \"src/**/*.{ts,tsx}\"",
193
193
  "lint": "eslint",
194
194
  "test": "vitest",
195
195
  "test:watch": "vitest --watch"