@schematichq/schematic-components 0.7.5 → 0.7.7

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.
@@ -170,6 +170,12 @@ declare interface BillingPriceView {
170
170
  * @memberof BillingPriceView
171
171
  */
172
172
  meterId?: string | null;
173
+ /**
174
+ *
175
+ * @type {number}
176
+ * @memberof BillingPriceView
177
+ */
178
+ packageSize: number;
173
179
  /**
174
180
  *
175
181
  * @type {number}
@@ -384,6 +390,12 @@ declare interface BillingProductForSubscriptionResponseData {
384
390
  * @memberof BillingProductForSubscriptionResponseData
385
391
  */
386
392
  name: string;
393
+ /**
394
+ *
395
+ * @type {number}
396
+ * @memberof BillingProductForSubscriptionResponseData
397
+ */
398
+ packageSize: number;
387
399
  /**
388
400
  *
389
401
  * @type {number}
@@ -4266,8 +4278,6 @@ declare interface PreviewSubscriptionFinanceResponseData {
4266
4278
 
4267
4279
  export declare const PricingTable: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_7> & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLDivElement | null>>;
4268
4280
 
4269
- export declare type PricingTableProps = DesignProps_7;
4270
-
4271
4281
  export declare const ProgressBar: ({ progress, value, total, color, bgColor, ...props }: ProgressBarProps) => JSX.Element;
4272
4282
 
4273
4283
  export declare interface ProgressBarProps extends React.ComponentPropsWithoutRef<typeof Flex> {
@@ -4740,23 +4750,24 @@ portal?: HTMLElement | null;
4740
4750
  export declare type TextElementProps = DesignProps_8;
4741
4751
 
4742
4752
  export declare enum TextPropNames {
4743
- Align = "$align",
4744
4753
  Font = "$font",
4745
4754
  Size = "$size",
4746
4755
  Weight = "$weight",
4747
4756
  Color = "$color",
4748
- Leading = "$leading"
4757
+ Leading = "$leading",
4758
+ Align = "$align"
4749
4759
  }
4750
4760
 
4751
4761
  export declare type TextPropNameTypes = `${TextPropNames}`;
4752
4762
 
4753
4763
  export declare interface TextProps {
4754
- $align?: ComponentProps["$textAlign"];
4764
+ display?: FontStyle;
4755
4765
  $font?: ComponentProps["$fontFamily"];
4756
4766
  $size?: ComponentProps["$fontSize"];
4757
4767
  $weight?: ComponentProps["$fontWeight"];
4758
4768
  $color?: ComponentProps["$color"];
4759
4769
  $leading?: ComponentProps["$lineHeight"];
4770
+ $align?: ComponentProps["$textAlign"];
4760
4771
  }
4761
4772
 
4762
4773
  export declare const Tooltip: ({ trigger, content, position, zIndex, ...rest }: TooltipProps) => JSX.Element;