@1urso/generic-editor 0.1.74 → 0.1.76

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.
Files changed (42) hide show
  1. package/dist/editor/components/AdvancedPropertiesPanel.d.ts +30 -0
  2. package/dist/editor/components/GlobalHeader.d.ts +11 -0
  3. package/dist/editor/components/HistoryPanel.d.ts +6 -0
  4. package/dist/editor/components/OnboardingTour.d.ts +7 -0
  5. package/dist/editor/components/PropertiesDialog.d.ts +2 -0
  6. package/dist/editor/components/SimpleLayers.d.ts +2 -0
  7. package/dist/editor/components/SimpleProperties.d.ts +2 -0
  8. package/dist/editor/components/SimpleSidebar.d.ts +6 -0
  9. package/dist/editor/components/WizardDialog.d.ts +12 -0
  10. package/dist/{src/editor → editor}/context.d.ts +2 -0
  11. package/dist/editor/utils/colorUtils.d.ts +1 -0
  12. package/dist/editor/utils/helpers.d.ts +14 -0
  13. package/dist/generic-editor.css +1 -1
  14. package/dist/generic-editor.js +21049 -17065
  15. package/dist/generic-editor.umd.cjs +35 -35
  16. package/dist/index.d.ts +4 -2
  17. package/package.json +1 -1
  18. package/dist/src/editor/components/AssetsPanel.d.ts +0 -2
  19. package/dist/src/editor/components/ElementAdvancedSettings.d.ts +0 -9
  20. package/dist/src/editor/components/ElementContextMenu.d.ts +0 -6
  21. package/dist/src/editor/components/HistoryPanel.d.ts +0 -2
  22. package/dist/src/editor/components/LayersPanel.d.ts +0 -4
  23. package/dist/src/editor/utils/helpers.d.ts +0 -3
  24. package/dist/src/index.d.ts +0 -4
  25. /package/dist/{src/App.d.ts → App.d.ts} +0 -0
  26. /package/dist/{src/editor → editor}/components/AlignmentToolbar.d.ts +0 -0
  27. /package/dist/{src/editor → editor}/components/Canvas.d.ts +0 -0
  28. /package/dist/{src/editor → editor}/components/ColorPicker.d.ts +0 -0
  29. /package/dist/{src/editor → editor}/components/DraggableElement.d.ts +0 -0
  30. /package/dist/{src/editor → editor}/components/EditorSettings.d.ts +0 -0
  31. /package/dist/{src/editor → editor}/components/ExportDialog.d.ts +0 -0
  32. /package/dist/{src/editor → editor}/components/Minimap.d.ts +0 -0
  33. /package/dist/{src/editor → editor}/components/Preview.d.ts +0 -0
  34. /package/dist/{src/editor → editor}/components/Ruler.d.ts +0 -0
  35. /package/dist/{src/editor → editor}/components/ShortcutsDialog.d.ts +0 -0
  36. /package/dist/{src/editor → editor}/components/SmartGuides.d.ts +0 -0
  37. /package/dist/{src/editor → editor}/components/ViewToolbar.d.ts +0 -0
  38. /package/dist/{src/editor → editor}/index.d.ts +0 -0
  39. /package/dist/{src/editor → editor}/types.d.ts +0 -0
  40. /package/dist/{src/editor → editor}/utils/htmlGenerator.d.ts +0 -0
  41. /package/dist/{src/editor → editor}/utils/layoutEngine.d.ts +0 -0
  42. /package/dist/{src/main.d.ts → main.d.ts} +0 -0
package/dist/index.d.ts CHANGED
@@ -1,2 +1,4 @@
1
- export * from './src/index'
2
- export {}
1
+ export { GenericEditor as EditorContent } from './editor/index';
2
+ export * from './editor/types';
3
+ export type { IElement, IListSettings, IProp } from './editor/context';
4
+ export { generateHTML } from './editor/utils/htmlGenerator';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1urso/generic-editor",
3
- "version": "0.1.74",
3
+ "version": "0.1.76",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -1,2 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const AssetsPanel: React.FC;
@@ -1,9 +0,0 @@
1
- import { default as React } from 'react';
2
- interface ElementAdvancedSettingsProps {
3
- elementId: string;
4
- open: boolean;
5
- onOpenChange: (open: boolean) => void;
6
- initialTab?: string;
7
- }
8
- export declare const ElementAdvancedSettings: React.FC<ElementAdvancedSettingsProps>;
9
- export {};
@@ -1,6 +0,0 @@
1
- import { default as React } from 'react';
2
- import { IElement } from '../context';
3
- export declare const ElementContextMenu: React.FC<{
4
- children: React.ReactNode;
5
- element: IElement;
6
- }>;
@@ -1,2 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const HistoryPanel: React.FC;
@@ -1,4 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const LayersPanel: React.FC<{
3
- onOpenSettings?: (id: string) => void;
4
- }>;
@@ -1,3 +0,0 @@
1
- import { IElementFormatting } from '../context';
2
- export declare const formatValue: (value: unknown, formatting: IElementFormatting) => string;
3
- export declare const checkCondition: (propValue: unknown, operator: string, ruleValue: string) => boolean;
@@ -1,4 +0,0 @@
1
- export { GenericEditor as EditorContent } from './editor/index';
2
- export * from './editor/types';
3
- export type { IElement, IListSettings, IProp } from './editor/context';
4
- export { generateHTML } from './editor/utils/htmlGenerator';
File without changes
File without changes
File without changes
File without changes