@xh/hoist 73.0.0-SNAPSHOT.1739899267422 → 73.0.0-SNAPSHOT.1740150867405

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.
@@ -95,6 +95,7 @@ export interface LayoutProps {
95
95
  flexGrow?: string | number;
96
96
  flexShrink?: string | number;
97
97
  flexWrap?: Property.FlexWrap;
98
+ gap?: string | number;
98
99
  alignItems?: string;
99
100
  alignSelf?: string;
100
101
  alignContent?: string;
@@ -11,7 +11,7 @@ import { ToastModel } from '../appcontainer/ToastModel';
11
11
  import '../styles/XH.scss';
12
12
  import { AppSpec, AppState, AppSuspendData, BannerSpec, ExceptionHandler, ExceptionHandlerOptions, HoistAppModel, HoistException, HoistService, HoistServiceClass, HoistUser, MessageSpec, PageState, PlainObject, SizingMode, TaskObserver, Theme, ToastSpec, TrackOptions } from './';
13
13
  import { HoistModel, ModelSelector, RefreshContextModel } from './model';
14
- export declare const MIN_HOIST_CORE_VERSION = "21.0";
14
+ export declare const MIN_HOIST_CORE_VERSION = "28.0";
15
15
  /**
16
16
  * Top-level Singleton model for Hoist. This is the main entry point for the API.
17
17
  *
@@ -61,6 +61,7 @@ export declare const autoRefreshAppOption: ({ formFieldProps, inputProps }?: Aut
61
61
  flexGrow?: string | number;
62
62
  flexShrink?: string | number;
63
63
  flexWrap?: import("csstype").Property.FlexWrap;
64
+ gap?: string | number;
64
65
  alignItems?: string;
65
66
  alignSelf?: string;
66
67
  alignContent?: string;
@@ -59,6 +59,7 @@ export declare const themeAppOption: ({ formFieldProps, inputProps }?: ThemeAppO
59
59
  flexGrow?: string | number;
60
60
  flexShrink?: string | number;
61
61
  flexWrap?: import("csstype").Property.FlexWrap;
62
+ gap?: string | number;
62
63
  alignItems?: string;
63
64
  alignSelf?: string;
64
65
  alignContent?: string;
@@ -118,6 +118,7 @@ export interface LayoutProps {
118
118
  flexGrow?: string | number;
119
119
  flexShrink?: string | number;
120
120
  flexWrap?: Property.FlexWrap;
121
+ gap?: string | number;
121
122
 
122
123
  alignItems?: string;
123
124
  alignSelf?: string;
package/core/XH.ts CHANGED
@@ -64,7 +64,7 @@ import {installServicesAsync} from './impl/InstallServices';
64
64
  import {instanceManager} from './impl/InstanceManager';
65
65
  import {HoistModel, ModelSelector, RefreshContextModel} from './model';
66
66
 
67
- export const MIN_HOIST_CORE_VERSION = '21.0';
67
+ export const MIN_HOIST_CORE_VERSION = '28.0';
68
68
 
69
69
  declare const xhAppCode: string;
70
70
  declare const xhAppName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "73.0.0-SNAPSHOT.1739899267422",
3
+ "version": "73.0.0-SNAPSHOT.1740150867405",
4
4
  "description": "Hoist add-on for building and deploying React Applications.",
5
5
  "repository": "github:xh/hoist-react",
6
6
  "homepage": "https://xh.io",