@wix/ditto-codegen-public 1.0.218 → 1.0.219
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,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { FC } from 'react';
|
|
3
|
-
import
|
|
3
|
+
import './style.css';
|
|
4
4
|
|
|
5
5
|
interface Props {
|
|
6
6
|
id: string;
|
|
@@ -11,8 +11,8 @@ interface Props {
|
|
|
11
11
|
const Button: FC<Props> = (props) => {
|
|
12
12
|
return (
|
|
13
13
|
<div className={props.className} id={props.id}>
|
|
14
|
-
<button className=
|
|
15
|
-
<span className=
|
|
14
|
+
<button className="btn">
|
|
15
|
+
<span className="text">
|
|
16
16
|
{props.text ?? '[Default] Click Me'}
|
|
17
17
|
</span>
|
|
18
18
|
</button>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ditto-codegen-public",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.219",
|
|
4
4
|
"description": "AI-powered Wix CLI app generator - standalone executable",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node build.mjs",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"@wix/ditto-codegen": "1.0.0",
|
|
25
25
|
"esbuild": "^0.27.2"
|
|
26
26
|
},
|
|
27
|
-
"falconPackageHash": "
|
|
27
|
+
"falconPackageHash": "470ed71f8fda8264ffdf56a41febf6cf5d046e62b621cb07aa71dddf"
|
|
28
28
|
}
|
/package/dist/wix-cli-templates/src/site/components/my-component/{styles.module.css → style.css}
RENAMED
|
File without changes
|