@developer_tribe/react-builder 1.0.5 → 1.0.7
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/index.d.ts +1 -2
- package/dist/build-components/patterns.generated.d.ts +0 -383
- package/dist/components/BottomBar.d.ts +12 -0
- package/dist/components/LoadingComponent.d.ts +1 -0
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.native.cjs.js +1 -1
- package/dist/index.native.cjs.js.map +1 -1
- package/dist/index.native.esm.js +4 -4
- package/dist/index.native.esm.js.map +1 -1
- package/dist/modals/ScreenColorsModal.d.ts +8 -0
- package/dist/modals/index.d.ts +1 -0
- package/dist/pages/ProjectPage.d.ts +3 -2
- package/dist/styles.css +1 -1
- package/dist/utils/nodeTree.d.ts +5 -0
- package/package.json +5 -2
- package/src/build-components/RenderNode.generated.tsx +0 -7
- package/src/build-components/index.ts +0 -5
- package/src/build-components/patterns.generated.ts +0 -399
- package/src/components/BottomBar.tsx +242 -0
- package/src/components/LoadingComponent.tsx +10 -0
- package/src/index.ts +2 -1
- package/src/modals/ScreenColorsModal.tsx +121 -0
- package/src/modals/index.ts +1 -0
- package/src/pages/ProjectPage.tsx +72 -163
- package/src/styles/base/_global.scss +25 -20
- package/src/styles/components/_attributes-editor.scss +26 -24
- package/src/styles/components/_bottom-bar.scss +101 -0
- package/src/styles/components/_editor-shell.scss +19 -18
- package/src/styles/components/_mockos-router.scss +16 -14
- package/src/styles/components/_ui-components.scss +14 -15
- package/src/styles/foundation/_colors.scss +28 -8
- package/src/styles/foundation/_mixins.scss +1 -1
- package/src/styles/foundation/_sizes.scss +4 -2
- package/src/styles/index.scss +1 -0
- package/src/styles/layout/_builder.scss +1 -1
- package/src/styles/modals/_add-component.scss +2 -2
- package/src/styles/modals/_color-modal.scss +2 -2
- package/src/styles/modals/_modal-shell.scss +1 -1
- package/src/utils/nodeTree.ts +99 -0
- package/dist/build-components/PaywallSubscriButton/PaywallSubscriButton.d.ts +0 -5
- package/dist/build-components/PaywallSubscriButton/PaywallSubscriButtonProps.generated.d.ts +0 -50
- package/src/build-components/PaywallSubscriButton/PaywallSubscriButton.tsx +0 -10
- package/src/build-components/PaywallSubscriButton/PaywallSubscriButtonProps.generated.ts +0 -77
- package/src/build-components/PaywallSubscriButton/pattern.json +0 -27
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,8 @@ export { getOnboardSamples } from './assets/samples/getSamples';
|
|
|
16
16
|
export { RenderPage } from './RenderPage';
|
|
17
17
|
export { DeviceMockFrame } from './DeviceMockFrame';
|
|
18
18
|
export { novaToJson } from './utils/novaToJson';
|
|
19
|
-
export type { Localication } from './types/PreviewConfig';
|
|
19
|
+
export type { AppConfig, Localication } from './types/PreviewConfig';
|
|
20
|
+
export { defaultAppConfig } from './types/PreviewConfig';
|
|
20
21
|
export { getDevices, getDefaultDevice } from './utils/getDevices';
|
|
21
22
|
export type { Device } from './types/Device';
|
|
22
23
|
export { AttributesEditor };
|