@wix/editor-react-components 1.2281.0 → 1.2283.0
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/site/components/AccordionComponent/component.js +1 -1
- package/dist/site/components/AccordionComponent/manifest.js +2 -2
- package/dist/site/components/AnimatedIcon/manifest.js +1 -1
- package/dist/site/components/AudioPlayer/component.js +1 -1
- package/dist/site/components/AudioPlayer/manifest.js +2 -2
- package/dist/site/components/BoxContainer/component.js +1 -1
- package/dist/site/components/BoxContainer/manifest.js +1 -1
- package/dist/site/components/Breadcrumbs/component.js +2 -2
- package/dist/site/components/Breadcrumbs/manifest.js +2 -2
- package/dist/site/components/Button/manifest.js +2 -2
- package/dist/site/components/CollapsibleText/component.js +1 -1
- package/dist/site/components/CollapsibleText/manifest.js +2 -2
- package/dist/site/components/Dropdown/component.js +28 -30348
- package/dist/site/components/Dropdown/manifest.js +2 -2
- package/dist/site/components/GoogleMap/manifest.js +1 -1
- package/dist/site/components/HTMLComponent/component.js +1 -1
- package/dist/site/components/HTMLComponent/manifest.js +1 -1
- package/dist/site/components/HipaaIcon/component.js +1 -1
- package/dist/site/components/HipaaIcon/manifest.js +1 -1
- package/dist/site/components/LinkBar/component.js +1 -1
- package/dist/site/components/LinkBar/manifest.js +2 -2
- package/dist/site/components/Logo/component.js +1 -1
- package/dist/site/components/Logo/manifest.js +1 -1
- package/dist/site/components/Logo/sdk.js +1 -1
- package/dist/site/components/Lottie/component.js +1 -1
- package/dist/site/components/Lottie/manifest.js +2 -2
- package/dist/site/components/Menu/component.js +2 -2
- package/dist/site/components/Menu/manifest.js +2 -2
- package/dist/site/components/MultiStateBox/component.js +1 -1
- package/dist/site/components/MultiStateBox/manifest.js +2 -2
- package/dist/site/components/ProgressBar/component.js +1 -1
- package/dist/site/components/ProgressBar/manifest.js +1 -1
- package/dist/site/components/ProgressBar/sdk.js +1 -1
- package/dist/site/components/Repeater/component.js +1 -1
- package/dist/site/components/Repeater/manifest.js +1 -1
- package/dist/site/components/ShareButtons/component.js +2 -2
- package/dist/site/components/ShareButtons/manifest.js +2 -2
- package/dist/site/components/Slideshow/manifest.js +1 -1
- package/dist/site/components/Tabs/component.js +1 -1
- package/dist/site/components/Tabs/manifest.js +2 -2
- package/dist/site/components/TestComp/manifest.js +1 -1
- package/dist/site/components/TextBox/TextBox.d.ts +3 -0
- package/dist/site/components/TextBox/TextBox.types.d.ts +20 -0
- package/dist/site/components/TextBox/component.d.ts +2 -0
- package/dist/site/components/TextBox/component.js +146 -0
- package/dist/site/components/TextBox/component.preview.d.ts +4 -0
- package/dist/site/components/TextBox/constants.d.ts +79 -0
- package/dist/site/components/TextBox/css.css +137 -0
- package/dist/site/components/TextBox/index.d.ts +2 -0
- package/dist/site/components/TextBox/index.js +6 -0
- package/dist/site/components/TextBox/manifest.d.ts +5 -0
- package/dist/site/components/TextBox/manifest.js +219 -0
- package/dist/site/components/chunks/AnimatedIcon.js +1 -1
- package/dist/site/components/chunks/Button.js +1 -1
- package/dist/site/components/chunks/constants17.js +67 -17
- package/dist/site/components/chunks/constants18.js +15 -50
- package/dist/site/components/chunks/constants19.js +43 -45
- package/dist/site/components/chunks/constants20.js +48 -297
- package/dist/site/components/chunks/constants21.js +299 -41
- package/dist/site/components/chunks/constants22.js +44 -29
- package/dist/site/components/chunks/constants23.js +32 -17
- package/dist/site/components/chunks/constants24.js +16 -402
- package/dist/site/components/chunks/constants25.js +393 -73
- package/dist/site/components/chunks/constants26.js +80 -15
- package/dist/site/components/chunks/constants27.js +11 -42
- package/dist/site/components/chunks/constants28.js +44 -23
- package/dist/site/components/chunks/constants29.js +28 -10
- package/dist/site/components/chunks/constants30.js +10 -132
- package/dist/site/components/chunks/constants31.js +114 -46
- package/dist/site/components/chunks/constants32.js +53 -71
- package/dist/site/components/chunks/constants33.js +73 -77
- package/dist/site/components/chunks/constants34.js +76 -57
- package/dist/site/components/chunks/constants35.js +72 -0
- package/dist/site/components/chunks/index10.js +30414 -3
- package/dist/site/components/chunks/index11.js +5 -0
- package/dist/site/components/chunks/manifestSdkMixins.js +3 -3
- package/dist/site/components/chunks/utils.js +1 -1
- package/dist/site/components/extensions.js +24 -19
- package/package.json +5 -21
|
@@ -85,9 +85,9 @@ function manifestMouseHover(names = {}) {
|
|
|
85
85
|
};
|
|
86
86
|
}
|
|
87
87
|
export {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
88
|
+
manifestChangeable as a,
|
|
89
|
+
manifestMouseHover as b,
|
|
90
|
+
manifestClickable as c,
|
|
91
91
|
manifestInputable as d,
|
|
92
92
|
manifestFocusable as m
|
|
93
93
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { N as NO_PROGRESS, F as FULL_PROGRESS } from "./
|
|
1
|
+
import { N as NO_PROGRESS, F as FULL_PROGRESS } from "./constants23.js";
|
|
2
2
|
function getProgressValue(value = NO_PROGRESS, targetValue = FULL_PROGRESS) {
|
|
3
3
|
if (targetValue === 0) {
|
|
4
4
|
return NO_PROGRESS;
|
|
@@ -9,7 +9,7 @@ import manifest$6 from "./CollapsibleText/manifest.js";
|
|
|
9
9
|
import manifest$7 from "./Dropdown/manifest.js";
|
|
10
10
|
import manifest$8 from "./GoogleMap/manifest.js";
|
|
11
11
|
import manifest$9 from "./HipaaIcon/manifest.js";
|
|
12
|
-
import { H as HIPAA_SETTINGS_PANEL_ID } from "./chunks/
|
|
12
|
+
import { H as HIPAA_SETTINGS_PANEL_ID } from "./chunks/constants29.js";
|
|
13
13
|
import manifest$a from "./HTMLComponent/manifest.js";
|
|
14
14
|
import manifest$b from "./Image3/manifest.js";
|
|
15
15
|
import manifest$c from "./LegacyAppWidget/manifest.js";
|
|
@@ -36,24 +36,25 @@ import manifest$w from "./SocialPlayerYoutube/manifest.js";
|
|
|
36
36
|
import manifest$x from "./SvgImage/manifest.js";
|
|
37
37
|
import manifest$y from "./Tabs/manifest.js";
|
|
38
38
|
import manifest$z from "./TestComp/manifest.js";
|
|
39
|
-
import manifest$A from "./
|
|
40
|
-
import manifest$B from "./
|
|
41
|
-
import manifest$C from "./
|
|
42
|
-
import manifest$D from "./
|
|
43
|
-
import manifest$E from "./
|
|
44
|
-
import manifest$F from "./
|
|
45
|
-
import manifest$G from "./
|
|
46
|
-
import manifest$H from "./
|
|
47
|
-
import manifest$I from "./
|
|
48
|
-
import manifest$J from "./
|
|
49
|
-
import manifest$K from "./
|
|
50
|
-
import manifest$L from "./
|
|
51
|
-
import manifest$M from "./
|
|
52
|
-
import manifest$N from "./
|
|
53
|
-
import manifest$O from "./
|
|
54
|
-
import manifest$P from "./
|
|
55
|
-
import manifest$Q from "./
|
|
56
|
-
import manifest$R from "./
|
|
39
|
+
import manifest$A from "./TextBox/manifest.js";
|
|
40
|
+
import manifest$B from "./TextEffects3d/manifest.js";
|
|
41
|
+
import manifest$C from "./TextEffectsBauhaus/manifest.js";
|
|
42
|
+
import manifest$D from "./TextEffectsGlass/manifest.js";
|
|
43
|
+
import manifest$E from "./TextEffectsGlitch/manifest.js";
|
|
44
|
+
import manifest$F from "./TextEffectsLetterPress/manifest.js";
|
|
45
|
+
import manifest$G from "./TextEffectsMatrix/manifest.js";
|
|
46
|
+
import manifest$H from "./TextEffectsNeonSign/manifest.js";
|
|
47
|
+
import manifest$I from "./TextEffectsNoisy/manifest.js";
|
|
48
|
+
import manifest$J from "./TextEffectsOutlineOut/manifest.js";
|
|
49
|
+
import manifest$K from "./TextEffectsRetro/manifest.js";
|
|
50
|
+
import manifest$L from "./TextEffectsShook/manifest.js";
|
|
51
|
+
import manifest$M from "./TextEffectsSticker/manifest.js";
|
|
52
|
+
import manifest$N from "./TextEffectsStriped/manifest.js";
|
|
53
|
+
import manifest$O from "./TextInput/manifest.js";
|
|
54
|
+
import manifest$P from "./TextMarquee/manifest.js";
|
|
55
|
+
import manifest$Q from "./TransparentVideo/manifest.js";
|
|
56
|
+
import manifest$R from "./VideoUpload/manifest.js";
|
|
57
|
+
import manifest$S from "./WRichText/manifest.js";
|
|
57
58
|
const animatedIconPanelExtension = extensions.editorReactComponentPanel({
|
|
58
59
|
id: "d8d9ddca-d5e4-453a-bd36-7deb8b302d26",
|
|
59
60
|
displayName: "Animated Icon",
|
|
@@ -690,6 +691,10 @@ const appConfig = app().use(
|
|
|
690
691
|
extensions.editorReactComponent(
|
|
691
692
|
manifest$R
|
|
692
693
|
)
|
|
694
|
+
).use(
|
|
695
|
+
extensions.editorReactComponent(
|
|
696
|
+
manifest$S
|
|
697
|
+
)
|
|
693
698
|
);
|
|
694
699
|
appConfig.use(animatedIconPanelExtension).use(googleMapManageLocationsPanelExtension).use(hipaaIconSettingsPanelExtension).use(htmlComponentPanelExtension).use(maskPanelExtension).use(lineFormatPanelExtension).use(linkBarOrientationPanelExtension).use(logoCustomizePanelExtension).use(menuFormatPanelExtension).use(repeaterFormatPanelExtension).use(shareButtonsFormatPanelExtension).use(shareButtonsManagePanelExtension).use(siteLogoCustomizePanelExtension).use(socialPlayerFacebookSettingsPanelExtension).use(socialPlayerInstagramSettingsPanelExtension).use(socialPlayerSnapchatSettingsPanelExtension).use(socialPlayerTikTokSettingsPanelExtension).use(socialPlayerVimeoSettingsPanelExtension).use(socialPlayerYoutubeSettingsPanelExtension).use(svgImageSvgColorsPanelExtension).use(textEffectsTextTwistPanelExtension).use(textEffectsBauhausPatternsPanelExtension).use(textEffectsGlassPatternsPanelExtension).use(textEffectsGlitchPatternsPanelExtension).use(textEffectsLetterPressPatternsPanelExtension).use(textEffectsMatrixPatternsPanelExtension).use(textEffectsNeonSignPatternsPanelExtension).use(textEffectsNoisyPatternsPanelExtension).use(textEffectsOutlineOutPatternsPanelExtension).use(textEffectsRetroPatternsPanelExtension).use(textEffectsShookPatternsPanelExtension).use(textEffectsStickerPatternsPanelExtension).use(textMarqueePanelExtension).use(transparentVideoPanelExtension).use(videoUploadPanelExtension);
|
|
695
700
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/editor-react-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2283.0",
|
|
4
4
|
"description": "React components for the Wix Editor",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"dev": "yarn validate:manifests && yarn cli-dev",
|
|
42
42
|
"clean": "rm -rf dist",
|
|
43
43
|
"generate": "wix generate",
|
|
44
|
-
"preview": "NODE_OPTIONS=\"--import
|
|
44
|
+
"preview": "NODE_OPTIONS=\"--import ./scripts/intercept.js\" wix preview",
|
|
45
45
|
"release": "echo 'Do not use manual GA, use DevPortal GA only!'",
|
|
46
|
-
"cli-dev": "NODE_OPTIONS=\"--import
|
|
46
|
+
"cli-dev": "NODE_OPTIONS=\"--import ./scripts/intercept.js\" wix dev",
|
|
47
47
|
"build:dependencies": "yarn workspace @wix/components-infra run build",
|
|
48
48
|
"test": "yarn prepare:manifest-tests && vitest",
|
|
49
49
|
"test:watch": "yarn prepare:manifest-tests && vitest watch",
|
|
@@ -72,14 +72,13 @@
|
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"@radix-ui/react-accordion": "^1.2.11",
|
|
75
|
-
"@radix-ui/react-icons": "^1.3.2",
|
|
76
75
|
"@vimeo/player": "^2.20.1",
|
|
77
76
|
"@vis.gl/react-google-maps": "^1.5.2",
|
|
78
77
|
"@wix/services-manager-react": "^0.1.27",
|
|
78
|
+
"@wix/site-ui": "1.131.0",
|
|
79
79
|
"@wix/video": "^1.85.0",
|
|
80
80
|
"@wix/wix-ui-icons-common": "^3.173.0",
|
|
81
81
|
"bidi-js": "^1.0.3",
|
|
82
|
-
"color": "^4.2.3",
|
|
83
82
|
"html-react-parser": "^5.1.18",
|
|
84
83
|
"htmlparser2": "^10.0.0",
|
|
85
84
|
"kampos": "^0.16.0",
|
|
@@ -94,7 +93,6 @@
|
|
|
94
93
|
"@codemirror/lang-html": "^6.4.9",
|
|
95
94
|
"@playwright/test": "^1.60.0",
|
|
96
95
|
"@storybook/addon-docs": "^9.1.19",
|
|
97
|
-
"@storybook/react": "^9.1.19",
|
|
98
96
|
"@storybook/react-vite": "^9.1.19",
|
|
99
97
|
"@testing-library/jest-dom": "^6.4.2",
|
|
100
98
|
"@testing-library/react": "^14.1.2",
|
|
@@ -105,36 +103,26 @@
|
|
|
105
103
|
"@wix/a11y-audit-tool-plugin": "^0.324.0",
|
|
106
104
|
"@wix/astro": "^2.62.0",
|
|
107
105
|
"@wix/business-tools": "^1.0.225",
|
|
108
|
-
"@wix/ci-build-info": "^1.0.333",
|
|
109
106
|
"@wix/cli": "^1.1.223",
|
|
110
107
|
"@wix/cli-app": "^1.1.223",
|
|
111
108
|
"@wix/component-protocol": "^1.237.0",
|
|
112
|
-
"@wix/component-storybook-utils": "^1.0.0",
|
|
113
109
|
"@wix/components-infra": "^1.0.0",
|
|
114
|
-
"@wix/crm": "^1.0.1571",
|
|
115
110
|
"@wix/design-system": "^1.273.0",
|
|
116
111
|
"@wix/editor": "^1.586.0",
|
|
117
|
-
"@wix/editor-elements-definitions": "^1.0.0",
|
|
118
|
-
"@wix/editor-elements-library": "^1.0.0",
|
|
119
112
|
"@wix/editor-elements-scripts": "^1.0.0",
|
|
120
113
|
"@wix/editor-elements-test-utils": "^1.0.0",
|
|
121
|
-
"@wix/editor-elements-types": "^1.0.0",
|
|
122
114
|
"@wix/editor-react-types": "^1.0.8",
|
|
123
115
|
"@wix/essentials": "^0.1.28",
|
|
124
116
|
"@wix/fed-cli-sled": "^1.0.25",
|
|
125
117
|
"@wix/image": "^1.437.0",
|
|
126
118
|
"@wix/image-kit": "^1.118.0",
|
|
127
119
|
"@wix/janet-build": "^1.0.10",
|
|
128
|
-
"@wix/janet-dev-server": "^1.16.22",
|
|
129
120
|
"@wix/mappers-legacy-service": "^1.0.85",
|
|
130
121
|
"@wix/media": "^1.0.264",
|
|
131
122
|
"@wix/react-component-schema": "^1.7.0",
|
|
132
123
|
"@wix/seo-service": "^1.5.0",
|
|
133
|
-
"@wix/site-ui": "^1.0.0",
|
|
134
124
|
"@wix/sled-playwright": "^1.314.0",
|
|
135
125
|
"@wix/thunderbolt-components-native": "^1.0.0",
|
|
136
|
-
"@wix/thunderbolt-elements": "^1.0.0",
|
|
137
|
-
"@wix/thunderbolt-symbols": "^1.1977.3146",
|
|
138
126
|
"@wix/viewer-service-anchors": "^1.0.40",
|
|
139
127
|
"@wix/viewer-service-environment": "^1.0.47",
|
|
140
128
|
"@wix/viewer-service-link-utils": "^1.0.62",
|
|
@@ -145,12 +133,8 @@
|
|
|
145
133
|
"@wix/viewer-service-topology": "^1.0.26",
|
|
146
134
|
"@wix/viewer-service-translations": "^1.0.22",
|
|
147
135
|
"@wix/viewer-service-url": "^1.0.69",
|
|
148
|
-
"@wix/zero-config": "^1.85.0",
|
|
149
136
|
"astro": "^5.16.6",
|
|
150
137
|
"clsx": "2.0.0",
|
|
151
|
-
"esbuild-sass-plugin": "^3.3.1",
|
|
152
|
-
"glob": "^13.0.6",
|
|
153
|
-
"postcss-modules": "^6.0.1",
|
|
154
138
|
"react-aria-components": "^1.11.0",
|
|
155
139
|
"remark-gfm": "^4.0.0",
|
|
156
140
|
"sass": "^1.62.0",
|
|
@@ -199,5 +183,5 @@
|
|
|
199
183
|
"registry": "https://registry.npmjs.org/",
|
|
200
184
|
"access": "public"
|
|
201
185
|
},
|
|
202
|
-
"falconPackageHash": "
|
|
186
|
+
"falconPackageHash": "d31e63c7d0e9538ffc330a519b995b3895ce3e00fd0f3e2ab4028fc9"
|
|
203
187
|
}
|