@nice2dev/ui-designers 1.0.16 → 1.0.18
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/index.cjs +70 -70
- package/dist/index.d.ts +3 -3
- package/dist/index.mjs +8227 -8186
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as default_2 } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { NiceStandardProps } from '@nice2dev/ui';
|
|
3
3
|
import { NiceThemeBuilder } from '@nice2dev/ui';
|
|
4
4
|
import { NiceThemeBuilderProps } from '@nice2dev/ui';
|
|
5
5
|
import { NiceThemeBuilderSection } from '@nice2dev/ui';
|
|
@@ -187,7 +187,7 @@ export declare type LoopType = 'foreach' | 'while' | 'repeat' | 'parallel';
|
|
|
187
187
|
export declare const NiceControlConfigurator: default_2.ForwardRefExoticComponent<NiceControlConfiguratorProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
188
188
|
|
|
189
189
|
/** Props for the {@link NiceControlConfigurator} component — a live property editor with a control preview panel. */
|
|
190
|
-
export declare interface NiceControlConfiguratorProps extends
|
|
190
|
+
export declare interface NiceControlConfiguratorProps extends NiceStandardProps {
|
|
191
191
|
/** Registry key identifying the control type (e.g. "NiceButton", "NiceTextInput") */
|
|
192
192
|
controlType: string;
|
|
193
193
|
/** Descriptors for all configurable props */
|
|
@@ -283,7 +283,7 @@ export { NiceThemeDesignerSection }
|
|
|
283
283
|
export declare const NiceViewBuilder: default_2.ForwardRefExoticComponent<NiceViewBuilderProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
284
284
|
|
|
285
285
|
/** Props for the {@link NiceViewBuilder} component — a drag-and-drop page / view layout designer with palette, canvas, and property panel. */
|
|
286
|
-
export declare interface NiceViewBuilderProps extends
|
|
286
|
+
export declare interface NiceViewBuilderProps extends NiceStandardProps {
|
|
287
287
|
/** Available controls that can be placed on the canvas */
|
|
288
288
|
controlRegistry: NiceControlRegistryEntry[];
|
|
289
289
|
/** Render function to preview a control given its type and props */
|