@developer_tribe/react-builder 0.1.28 → 0.1.29
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/build-components/OnboardButton/OnboardButtonProps.generated.d.ts +2 -2
- package/dist/build-components/patterns.generated.d.ts +2 -2
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +2 -2
- package/package.json +1 -1
- package/src/build-components/OnboardButton/OnboardButton.tsx +6 -2
- package/src/build-components/OnboardButton/OnboardButtonProps.generated.ts +2 -2
- package/src/build-components/OnboardButton/pattern.json +2 -2
- package/src/build-components/patterns.generated.ts +2 -2
- package/src/utils/novaToJson.ts +12 -4
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { NodeData } from '../../types/Node';
|
|
2
2
|
export interface EventObjectGenerated {
|
|
3
3
|
type?: 'Permission' | 'Navigate';
|
|
4
|
-
permission?:
|
|
5
|
-
|
|
4
|
+
permission?: 'att' | 'notification' | 'rating' | 'null';
|
|
5
|
+
navigate_to?: 'string' | 'null';
|
|
6
6
|
}
|
|
7
7
|
export interface OnboardButtonPropsGenerated {
|
|
8
8
|
child: string;
|
|
@@ -97,8 +97,8 @@ export declare const patterns: readonly [{
|
|
|
97
97
|
readonly types: {
|
|
98
98
|
readonly EventObject: {
|
|
99
99
|
readonly type: readonly ["Permission", "Navigate"];
|
|
100
|
-
readonly permission: "
|
|
101
|
-
readonly
|
|
100
|
+
readonly permission: readonly ["att", "notification", "rating", "null"];
|
|
101
|
+
readonly navigate_to: readonly ["string", "null"];
|
|
102
102
|
};
|
|
103
103
|
};
|
|
104
104
|
}, {
|