@zealicsolutions/web-ui 0.2.80 → 0.2.82

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.
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { StoryFn } from '@storybook/react';
2
+ import type { StoryFn } from '@storybook/react';
3
3
  import { ContainerComponentProps } from 'containers';
4
4
  declare const _default: {
5
5
  title: string;
@@ -1,9 +1,9 @@
1
+ import type { Nullable, StrictUnion } from 'typescript';
1
2
  import { ButtonProps } from 'atoms';
2
3
  import { SelectOption } from 'atoms/Select/types';
3
4
  import { ImageProps, TabGroupProps } from 'molecules';
4
5
  import { CSSProperties } from 'styled-components';
5
6
  import { FontSizesTypes, ThemeColors } from 'theme';
6
- import { Nullable, StrictUnion } from 'typescript';
7
7
  export declare type ImageAttributes = {
8
8
  attributeType: 'image';
9
9
  imageSource: string;
@@ -26,5 +26,5 @@ export declare type ContainerComponentProps = {
26
26
  wide: AdditionalContainerProps;
27
27
  compact: AdditionalContainerProps;
28
28
  };
29
- children: (ContainerComponentProps | Molecule)[];
29
+ items: (ContainerComponentProps | Molecule)[];
30
30
  };
@@ -1,4 +1,4 @@
1
- export declare type ThemeColors = 'primary' | 'secondary' | 'pink' | 'pinkTint' | 'pinkShade' | 'orange' | 'orangeTint' | 'orangeShade' | 'purple' | 'purpleTint' | 'purpleShade' | 'indigo' | 'indigoTint1' | 'indigoTint2' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'green' | 'greenTint' | 'greenShade' | 'yellow' | 'yellowTint' | 'yellowShade' | 'red' | 'redTint' | 'redShade' | 'black' | 'white' | 'blue' | 'blueTint' | 'blueShade' | 'background';
1
+ export declare type ThemeColors = 'primary' | 'primaryTint' | 'primaryShade' | 'secondary' | 'secondaryTint' | 'secondaryShade' | 'pink' | 'pinkTint' | 'pinkShade' | 'orange' | 'orangeTint' | 'orangeShade' | 'purple' | 'purpleTint' | 'purpleShade' | 'indigo' | 'indigoTint1' | 'indigoTint2' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'green' | 'greenTint' | 'greenShade' | 'yellow' | 'yellowTint' | 'yellowShade' | 'red' | 'redTint' | 'redShade' | 'black' | 'white' | 'blue' | 'blueTint' | 'blueShade' | 'background';
2
2
  export declare type SizesTypes = '5XL' | '4XL' | '3XL' | '2XL' | 'XL' | 'L' | 'M' | 'S' | 'XS';
3
3
  export declare type FontSizesTypes = Exclude<SizesTypes, '5XL' | '4XL'>;
4
4
  export declare type BreakpointSizesTypes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
package/dist/index.d.ts CHANGED
@@ -1103,7 +1103,7 @@ declare const ZealThemeProvider: (props: PropsWithChildren<{
1103
1103
  theme?: DefaultTheme;
1104
1104
  }>) => JSX.Element;
1105
1105
 
1106
- declare type ThemeColors = 'primary' | 'secondary' | 'pink' | 'pinkTint' | 'pinkShade' | 'orange' | 'orangeTint' | 'orangeShade' | 'purple' | 'purpleTint' | 'purpleShade' | 'indigo' | 'indigoTint1' | 'indigoTint2' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'green' | 'greenTint' | 'greenShade' | 'yellow' | 'yellowTint' | 'yellowShade' | 'red' | 'redTint' | 'redShade' | 'black' | 'white' | 'blue' | 'blueTint' | 'blueShade' | 'background';
1106
+ declare type ThemeColors = 'primary' | 'primaryTint' | 'primaryShade' | 'secondary' | 'secondaryTint' | 'secondaryShade' | 'pink' | 'pinkTint' | 'pinkShade' | 'orange' | 'orangeTint' | 'orangeShade' | 'purple' | 'purpleTint' | 'purpleShade' | 'indigo' | 'indigoTint1' | 'indigoTint2' | 'gray1' | 'gray2' | 'gray3' | 'gray4' | 'gray5' | 'green' | 'greenTint' | 'greenShade' | 'yellow' | 'yellowTint' | 'yellowShade' | 'red' | 'redTint' | 'redShade' | 'black' | 'white' | 'blue' | 'blueTint' | 'blueShade' | 'background';
1107
1107
  declare type SizesTypes = '5XL' | '4XL' | '3XL' | '2XL' | 'XL' | 'L' | 'M' | 'S' | 'XS';
1108
1108
  declare type FontSizesTypes = Exclude<SizesTypes, '5XL' | '4XL'>;
1109
1109
  declare type BreakpointSizesTypes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
@@ -1290,7 +1290,7 @@ declare type ContainerComponentProps = {
1290
1290
  wide: AdditionalContainerProps;
1291
1291
  compact: AdditionalContainerProps;
1292
1292
  };
1293
- children: (ContainerComponentProps | Molecule)[];
1293
+ items: (ContainerComponentProps | Molecule)[];
1294
1294
  };
1295
1295
 
1296
1296
  declare const ContainerWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, Pick<ContainerProps$2, "type"> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zealicsolutions/web-ui",
3
- "version": "0.2.80",
3
+ "version": "0.2.82",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"