@measured/puck 0.13.1-canary.c38ee07 → 0.14.0-canary.4932a6e
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.d.ts
    CHANGED
    
    | 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            import { C as Config, D as Data, I as ItemSelector, U as UiState, A as AppState, F as Field, a as DefaultComponentProps, b as DefaultRootProps, M as MappedItem, R as RootDataWithProps, c as RootData } from './Config- 
     | 
| 
       2 
     | 
    
         
            -
            export { g as Adaptor, f as ArrayField, r as ArrayState, n as BaseData, B as BaseField, m as ComponentConfig, o as ComponentData, k as Content, i as CustomField, s as DropZone, h as ExternalField, E as ExternalFieldWithAdaptor, j as Fields, q as ItemWithId, N as NumberField, O as ObjectField, P as PuckComponent, l as PuckContext, e as RadioField, p as RootDataWithoutProps, S as SelectField, T as TextField, d as TextareaField } from './Config- 
     | 
| 
      
 1 
     | 
    
         
            +
            import { C as Config, D as Data, I as ItemSelector, U as UiState, A as AppState, F as Field, a as DefaultComponentProps, b as DefaultRootProps, M as MappedItem, R as RootDataWithProps, c as RootData } from './Config-1b86f0dc.js';
         
     | 
| 
      
 2 
     | 
    
         
            +
            export { g as Adaptor, f as ArrayField, r as ArrayState, n as BaseData, B as BaseField, m as ComponentConfig, o as ComponentData, k as Content, i as CustomField, s as DropZone, h as ExternalField, E as ExternalFieldWithAdaptor, j as Fields, q as ItemWithId, N as NumberField, O as ObjectField, P as PuckComponent, l as PuckContext, e as RadioField, p as RootDataWithoutProps, S as SelectField, T as TextField, d as TextareaField } from './Config-1b86f0dc.js';
         
     | 
| 
       3 
3 
     | 
    
         
             
            import * as react_jsx_runtime from 'react/jsx-runtime';
         
     | 
| 
       4 
4 
     | 
    
         
             
            import * as react from 'react';
         
     | 
| 
       5 
5 
     | 
    
         
             
            import { ReactNode, CSSProperties, ReactElement, SyntheticEvent } from 'react';
         
     | 
    
        package/dist/index.js
    CHANGED
    
    | 
         @@ -29227,7 +29227,7 @@ var Button = ({ 
     | 
|
| 
       29227 
29227 
     | 
    
         
             
            }) => {
         
     | 
| 
       29228 
29228 
     | 
    
         
             
              const [loading, setLoading] = (0, import_react2.useState)(loadingProp);
         
     | 
| 
       29229 
29229 
     | 
    
         
             
              (0, import_react2.useEffect)(() => setLoading(loadingProp), [loadingProp]);
         
     | 
| 
       29230 
     | 
    
         
            -
              const ElementType = href ? "a" : "button";
         
     | 
| 
      
 29230 
     | 
    
         
            +
              const ElementType = href ? "a" : onClick ? "button" : "div";
         
     | 
| 
       29231 
29231 
     | 
    
         
             
              const el = /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
         
     | 
| 
       29232 
29232 
     | 
    
         
             
                ElementType,
         
     | 
| 
       29233 
29233 
     | 
    
         
             
                {
         
     | 
| 
         @@ -31456,7 +31456,9 @@ var DefaultField = ({ 
     | 
|
| 
       31456 
31456 
     | 
    
         
             
                        }
         
     | 
| 
       31457 
31457 
     | 
    
         
             
                      },
         
     | 
| 
       31458 
31458 
     | 
    
         
             
                      readOnly,
         
     | 
| 
       31459 
     | 
    
         
            -
                      id
         
     | 
| 
      
 31459 
     | 
    
         
            +
                      id,
         
     | 
| 
      
 31460 
     | 
    
         
            +
                      min: field.type === "number" ? field.min : void 0,
         
     | 
| 
      
 31461 
     | 
    
         
            +
                      max: field.type === "number" ? field.max : void 0
         
     | 
| 
       31460 
31462 
     | 
    
         
             
                    }
         
     | 
| 
       31461 
31463 
     | 
    
         
             
                  )
         
     | 
| 
       31462 
31464 
     | 
    
         
             
                }
         
     | 
    
        package/dist/rsc.d.ts
    CHANGED
    
    | 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            import * as react_jsx_runtime from 'react/jsx-runtime';
         
     | 
| 
       2 
     | 
    
         
            -
            import { C as Config, D as Data } from './Config- 
     | 
| 
      
 2 
     | 
    
         
            +
            import { C as Config, D as Data } from './Config-1b86f0dc.js';
         
     | 
| 
       3 
3 
     | 
    
         
             
            import 'react';
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
       5 
5 
     | 
    
         
             
            declare function Render<UserConfig extends Config<any, any, any> = Config<any, any, any>>({ config, data }: {
         
     |