@edifice.io/react 2.5.17-develop.20260430122259 → 2.5.18-develop-b2school.20260504100711
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,2 +1,2 @@
|
|
|
1
1
|
export { default as OnboardingModal } from './OnboardingModal';
|
|
2
|
-
export type { OnboardingModalRef } from './OnboardingModal';
|
|
2
|
+
export type { DisplayRuleCheckResult, OnboardingModalRef, OnboardingProps, } from './OnboardingModal';
|
|
@@ -15,16 +15,14 @@ function drawBlurListener(application, {
|
|
|
15
15
|
const child = application.stage.getChildByName(spriteName), scale = getApplicationScale(application);
|
|
16
16
|
if (child == null) return;
|
|
17
17
|
const newSprite = new PIXI.Sprite(child.texture);
|
|
18
|
-
newSprite.filters = [
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
Math.min(scale, 1)
|
|
25
|
-
)
|
|
18
|
+
newSprite.filters = [new PIXI.BlurFilter(
|
|
19
|
+
8,
|
|
20
|
+
// PIXI Default value for strength of the blur effect
|
|
21
|
+
4,
|
|
22
|
+
// Quality of the blur effect depending on the scale (4 is the PIXI default value)
|
|
23
|
+
Math.min(scale, 1)
|
|
26
24
|
// Resolution of the blur effect depending on the scale
|
|
27
|
-
], newSprite.width = child.width, newSprite.height = child.height, newSprite.scale = new PIXI.Point(1, 1), newSprite.anchor = child.anchor, newSprite.mask = drawBrush(points, scale), child.addChild(newSprite);
|
|
25
|
+
)], newSprite.width = child.width, newSprite.height = child.height, newSprite.scale = new PIXI.Point(1, 1), newSprite.anchor = child.anchor, newSprite.mask = drawBrush(points, scale), child.addChild(newSprite);
|
|
28
26
|
});
|
|
29
27
|
}
|
|
30
28
|
function drawCursor(application) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/react",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.18-develop-b2school.20260504100711",
|
|
4
4
|
"description": "Edifice React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -135,9 +135,9 @@
|
|
|
135
135
|
"swiper": "^10.1.0",
|
|
136
136
|
"ua-parser-js": "^1.0.36",
|
|
137
137
|
"react-pdf": "10.2.0",
|
|
138
|
-
"@edifice.io/
|
|
139
|
-
"@edifice.io/tiptap-extensions": "2.5.
|
|
140
|
-
"@edifice.io/
|
|
138
|
+
"@edifice.io/bootstrap": "2.5.18-develop-b2school.20260504100711",
|
|
139
|
+
"@edifice.io/tiptap-extensions": "2.5.18-develop-b2school.20260504100711",
|
|
140
|
+
"@edifice.io/utilities": "2.5.18-develop-b2school.20260504100711"
|
|
141
141
|
},
|
|
142
142
|
"devDependencies": {
|
|
143
143
|
"@babel/plugin-transform-react-pure-annotations": "^7.23.3",
|
|
@@ -168,8 +168,8 @@
|
|
|
168
168
|
"vite": "^5.4.11",
|
|
169
169
|
"vite-plugin-dts": "^4.1.0",
|
|
170
170
|
"vite-tsconfig-paths": "^5.0.1",
|
|
171
|
-
"@edifice.io/client": "2.5.
|
|
172
|
-
"@edifice.io/config": "2.5.
|
|
171
|
+
"@edifice.io/client": "2.5.18-develop-b2school.20260504100711",
|
|
172
|
+
"@edifice.io/config": "2.5.18-develop-b2school.20260504100711"
|
|
173
173
|
},
|
|
174
174
|
"peerDependencies": {
|
|
175
175
|
"@react-spring/web": "^9.7.5",
|