@squaredr/fieldcraft-pro 0.0.0
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/chunk-APHGEYG4.mjs +3168 -0
- package/dist/chunk-MQGR25NG.mjs +409 -0
- package/dist/chunk-NIKQEWPG.mjs +467 -0
- package/dist/form-builder/index.d.mts +367 -0
- package/dist/form-builder/index.d.ts +367 -0
- package/dist/form-builder/index.js +3201 -0
- package/dist/form-builder/index.mjs +1 -0
- package/dist/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +4111 -0
- package/dist/index.mjs +24 -0
- package/dist/response-viewer/index.d.mts +21 -0
- package/dist/response-viewer/index.d.ts +21 -0
- package/dist/response-viewer/index.js +469 -0
- package/dist/response-viewer/index.mjs +1 -0
- package/dist/styles.css +2 -0
- package/dist/theme-editor/index.d.mts +32 -0
- package/dist/theme-editor/index.d.ts +32 -0
- package/dist/theme-editor/index.js +413 -0
- package/dist/theme-editor/index.mjs +1 -0
- package/dist/theme-editor-styles.css +256 -0
- package/package.json +74 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DEFAULT_PALETTE, DEFAULT_SCHEMA, FormBuilder, FormBuilderThemeProvider, QUESTION_TYPE_INFO, addOption, addQuestion, addSection, cleanPreset, cn, duplicateQuestion, duplicateSection, findQuestion, findSection, generateId, generateOptionId, generateQuestionId, generateSectionId, moveOption, moveQuestion, moveSection, removeOption, removeQuestion, removeSection, squaredrDarkPreset, updateOption, updateQuestion, updateSection, useBuilderState, useBuilderTheme, useDragDrop, useUndoRedo } from '../chunk-APHGEYG4.mjs';
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { FieldCraftProProvider, LicenseContext, LicenseStatus, UnlicensedOverlay, isProductionEnvironment, requireLicense, useLicense, validateLicense } from '@squaredr/fieldcraft-pro-license';
|
|
2
|
+
export { BuilderState, BuilderStateHook, DEFAULT_PALETTE, DEFAULT_SCHEMA, DragItem, DropTarget, FormBuilder, FormBuilderProps, FormBuilderTheme, FormBuilderThemeProvider, MutationAction, PaletteCategory, PropertyPanelTab, QUESTION_TYPE_INFO, QuestionTypeCategory, QuestionTypeInfo, SelectedItem, UndoRedoState, addOption, addQuestion, addSection, cleanPreset, cn, duplicateQuestion, duplicateSection, findQuestion, findSection, generateId, generateOptionId, generateQuestionId, generateSectionId, moveOption, moveQuestion, moveSection, removeOption, removeQuestion, removeSection, squaredrDarkPreset, updateOption, updateQuestion, updateSection, useBuilderState, useBuilderTheme, useDragDrop, useUndoRedo } from './form-builder/index.mjs';
|
|
3
|
+
export { ResponseField, ResponseViewer, ResponseViewerProps, ViewMode } from './response-viewer/index.mjs';
|
|
4
|
+
export { PREVIEW_SCHEMA, ThemeEditor, ThemeEditorInner, ThemeEditorProps } from './theme-editor/index.mjs';
|
|
5
|
+
import 'react';
|
|
6
|
+
import '@squaredr/fieldcraft-core';
|
|
7
|
+
import 'react/jsx-runtime';
|
|
8
|
+
import 'clsx';
|
|
9
|
+
import '@dnd-kit/core';
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { FieldCraftProProvider, LicenseContext, LicenseStatus, UnlicensedOverlay, isProductionEnvironment, requireLicense, useLicense, validateLicense } from '@squaredr/fieldcraft-pro-license';
|
|
2
|
+
export { BuilderState, BuilderStateHook, DEFAULT_PALETTE, DEFAULT_SCHEMA, DragItem, DropTarget, FormBuilder, FormBuilderProps, FormBuilderTheme, FormBuilderThemeProvider, MutationAction, PaletteCategory, PropertyPanelTab, QUESTION_TYPE_INFO, QuestionTypeCategory, QuestionTypeInfo, SelectedItem, UndoRedoState, addOption, addQuestion, addSection, cleanPreset, cn, duplicateQuestion, duplicateSection, findQuestion, findSection, generateId, generateOptionId, generateQuestionId, generateSectionId, moveOption, moveQuestion, moveSection, removeOption, removeQuestion, removeSection, squaredrDarkPreset, updateOption, updateQuestion, updateSection, useBuilderState, useBuilderTheme, useDragDrop, useUndoRedo } from './form-builder/index.js';
|
|
3
|
+
export { ResponseField, ResponseViewer, ResponseViewerProps, ViewMode } from './response-viewer/index.js';
|
|
4
|
+
export { PREVIEW_SCHEMA, ThemeEditor, ThemeEditorInner, ThemeEditorProps } from './theme-editor/index.js';
|
|
5
|
+
import 'react';
|
|
6
|
+
import '@squaredr/fieldcraft-core';
|
|
7
|
+
import 'react/jsx-runtime';
|
|
8
|
+
import 'clsx';
|
|
9
|
+
import '@dnd-kit/core';
|