@botonic/react 0.24.0-alpha.5 → 0.24.0-alpha.6
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.
|
@@ -115,10 +115,9 @@ export interface ThemeProps extends StyleProp {
|
|
|
115
115
|
customTypes?: React.ComponentType[];
|
|
116
116
|
} & StyleProp & {
|
|
117
117
|
timestamps?: {
|
|
118
|
-
EnableProp: any;
|
|
119
118
|
withImage?: boolean;
|
|
120
119
|
format: () => string;
|
|
121
|
-
} & StyleProp;
|
|
120
|
+
} & StyleProp & EnableProp;
|
|
122
121
|
};
|
|
123
122
|
button?: {
|
|
124
123
|
autodisable?: boolean;
|
|
@@ -115,10 +115,9 @@ export interface ThemeProps extends StyleProp {
|
|
|
115
115
|
customTypes?: React.ComponentType[];
|
|
116
116
|
} & StyleProp & {
|
|
117
117
|
timestamps?: {
|
|
118
|
-
EnableProp: any;
|
|
119
118
|
withImage?: boolean;
|
|
120
119
|
format: () => string;
|
|
121
|
-
} & StyleProp;
|
|
120
|
+
} & StyleProp & EnableProp;
|
|
122
121
|
};
|
|
123
122
|
button?: {
|
|
124
123
|
autodisable?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botonic/react",
|
|
3
|
-
"version": "0.24.0-alpha.
|
|
3
|
+
"version": "0.24.0-alpha.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Build Chatbots using React",
|
|
6
6
|
"main": "./lib/cjs",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"README.md"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@botonic/core": "0.23.2
|
|
38
|
+
"@botonic/core": "0.23.2",
|
|
39
39
|
"axios": "^1.6.0",
|
|
40
40
|
"emoji-picker-react": "^4.4.9",
|
|
41
41
|
"framer-motion": "^3.1.1",
|
|
@@ -129,10 +129,10 @@ export interface ThemeProps extends StyleProp {
|
|
|
129
129
|
customTypes?: React.ComponentType[]
|
|
130
130
|
} & StyleProp & {
|
|
131
131
|
timestamps?: {
|
|
132
|
-
EnableProp
|
|
133
132
|
withImage?: boolean
|
|
134
133
|
format: () => string
|
|
135
|
-
} & StyleProp
|
|
134
|
+
} & StyleProp &
|
|
135
|
+
EnableProp
|
|
136
136
|
}
|
|
137
137
|
button?: {
|
|
138
138
|
autodisable?: boolean
|