x-runtime-lib 0.9.37 → 0.9.39

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.
@@ -340,6 +340,7 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
340
340
  rowKey: "Row Key",
341
341
  rowReverse: "Row Reverse",
342
342
  rows: "Rows",
343
+ rules: "Rules",
343
344
  runtime: "Runtime",
344
345
  scale: "Scale",
345
346
  secondary: "Secondary",
@@ -340,6 +340,7 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = { "x-runtime-lib": {
340
340
  rowKey: "行键",
341
341
  rowReverse: "行反向",
342
342
  rows: "行数",
343
+ rules: "规则(s)",
343
344
  runtime: "运行时",
344
345
  scale: "缩放",
345
346
  secondary: "次要",
package/dist/index.d.ts CHANGED
@@ -278,7 +278,7 @@ export declare function isRenderSwitch(key: string): boolean;
278
278
 
279
279
  export declare function isThemeColor(v: unknown): boolean;
280
280
 
281
- export declare const itemsKeys: readonly ["alignTabsItemsV1", "axisTypeItemsV1", "borderStyleItemsV1", "btnSpacedItemsV1", "densityItemsV1", "directionItemsV1", "elevationItemsV1", "expansionPanelVariantItemsV1", "fieldVariantItemsV1", "flexCrossAlignItemsV1", "flexDirectionItemsV1", "flexMainAlignItemsV1", "flexWrapItemsV1", "fontWeightItemsV1", "inputTypeItemsV1", "numberInputControlVariantItemsV1", "positionItemsV1", "sheetVariantItemsV1", "sizeItemsV1", "speedDialOpenWayItemsV1", "textAlignItemsV1", "textDecorationItemsV1", "textEmphasisItemsV1", "textSizeItemsV1", "thumbLabelItemsV1", "tickShowItemsV1", "timelineAlignItemsV1", "timelineDirectionItemsV1", "timelineSideItemsV1", "timelineTruncateLineItemsV1", "transitionItemsV1"];
281
+ export declare const itemsKeys: readonly ["alignTabsItemsV1", "axisTypeItemsV1", "borderStyleItemsV1", "btnSpacedItemsV1", "btnTypeItemsV1", "densityItemsV1", "directionItemsV1", "elevationItemsV1", "expansionPanelVariantItemsV1", "fieldVariantItemsV1", "flexCrossAlignItemsV1", "flexDirectionItemsV1", "flexMainAlignItemsV1", "flexWrapItemsV1", "fontWeightItemsV1", "inputTypeItemsV1", "numberInputControlVariantItemsV1", "positionItemsV1", "sheetVariantItemsV1", "sizeItemsV1", "speedDialOpenWayItemsV1", "textAlignItemsV1", "textDecorationItemsV1", "textEmphasisItemsV1", "textSizeItemsV1", "thumbLabelItemsV1", "tickShowItemsV1", "timelineAlignItemsV1", "timelineDirectionItemsV1", "timelineSideItemsV1", "timelineTruncateLineItemsV1", "transitionItemsV1"];
282
282
 
283
283
  export declare function loadLocaleMessageRuntime(locale: string): Promise<object>;
284
284
 
@@ -836,7 +836,7 @@ export declare type ZProperty = ({
836
836
  } & ZPropertyBranch) | ({
837
837
  array: true;
838
838
  defaultArray: any[];
839
- } & ZPropertyBranch) | WithArray<ZPropertyDummy> | WithArray<ZPropertyText> | WithArray<ZPropertyNumber> | WithArray<ZPropertySwitch> | WithArray<ZPropertySelect> | WithArray<ZPropertyJson> | WithArray<ZPropertyIcon> | WithArray<ZPropertyMultiTypes> | WithArray<ZPropertyComp> | WithArray<ZPropertySlot> | WithArray<ZPropertyAdaptSlot> | WithArray<ZPropertyInlineSlot> | WithArray<ZPropertyTransient<Type>>;
839
+ } & ZPropertyBranch) | WithArray<ZPropertyDummy> | WithArray<ZPropertyText> | WithArray<ZPropertyNumber> | WithArray<ZPropertySwitch> | WithArray<ZPropertySelect> | WithArray<ZPropertyJson> | WithArray<ZPropertyIcon> | WithArray<ZPropertyComp> | WithArray<ZPropertySlot> | WithArray<ZPropertyAdaptSlot> | WithArray<ZPropertyInlineSlot> | WithArray<ZPropertyRule> | WithArray<ZPropertyMultiTypes> | WithArray<ZPropertyTransient<Type>>;
840
840
 
841
841
  declare type ZPropertyAdaptSlot = {
842
842
  ui: 'adaptSlot';
@@ -898,6 +898,11 @@ declare type ZPropertyNumber = {
898
898
  default: number;
899
899
  } & ZPropertyBase;
900
900
 
901
+ declare type ZPropertyRule = {
902
+ ui: 'rule';
903
+ default: string;
904
+ } & ZPropertyBase;
905
+
901
906
  declare type ZPropertySelect = {
902
907
  ui: 'select';
903
908
  items: ZItemsKey;