@ornikar/kitt-universal 1.0.0-pre.6 → 1.0.0

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.
Files changed (97) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/definitions/Icon/SpinningIcon.web.d.ts +0 -1
  3. package/dist/definitions/Icon/SpinningIcon.web.d.ts.map +1 -1
  4. package/dist/definitions/Loader/LargeLoader.web.d.ts +0 -1
  5. package/dist/definitions/Loader/LargeLoader.web.d.ts.map +1 -1
  6. package/dist/definitions/index.d.ts +15 -2
  7. package/dist/definitions/index.d.ts.map +1 -1
  8. package/dist/definitions/story-components/StoryGrid.d.ts +1 -1
  9. package/dist/definitions/story-components/StoryGrid.d.ts.map +1 -1
  10. package/dist/definitions/themes/default.d.ts +2 -1
  11. package/dist/definitions/themes/default.d.ts.map +1 -1
  12. package/dist/definitions/themes/late-ocean/fullScreenModalLateOceanTheme.d.ts +2 -1
  13. package/dist/definitions/themes/late-ocean/fullScreenModalLateOceanTheme.d.ts.map +1 -1
  14. package/dist/definitions/typography/TypographyLink.d.ts +1 -1
  15. package/dist/definitions/typography/TypographyLink.d.ts.map +1 -1
  16. package/dist/definitions/utils/storybook/decorators/KittThemeDecorator.d.ts.map +1 -1
  17. package/dist/index-browser-all.es.android.js +2011 -0
  18. package/dist/index-browser-all.es.android.js.map +1 -0
  19. package/dist/{index-browser-all-dev.es.js → index-browser-all.es.ios.js} +109 -36
  20. package/dist/index-browser-all.es.ios.js.map +1 -0
  21. package/dist/index-browser-all.es.js +112 -25
  22. package/dist/index-browser-all.es.js.map +1 -1
  23. package/dist/index-browser-all.es.web.js +1999 -0
  24. package/dist/index-browser-all.es.web.js.map +1 -0
  25. package/dist/{index-node-12.13-dev.cjs.js → index-node-14.17.cjs.js} +94 -22
  26. package/dist/index-node-14.17.cjs.js.map +1 -0
  27. package/dist/styles.css +117 -0
  28. package/dist/tsbuildinfo +1 -1
  29. package/package.json +14 -28
  30. package/src/.eslintrc.json +6 -37
  31. package/src/Avatar/Avatar.stories.tsx +2 -2
  32. package/src/Avatar/__snapshots__/Avatar.stories.tsx.snap +1 -1
  33. package/src/Button/Button.stories.tsx +3 -3
  34. package/src/Button/__snapshots__/Button.stories.tsx.snap +1 -1
  35. package/src/Card/Card.stories.tsx +2 -2
  36. package/src/Card/__snapshots__/Card.stories.tsx.snap +1 -1
  37. package/src/FullScreenModal/FullScreenModal.stories.tsx +3 -3
  38. package/src/FullScreenModal/Header.tsx +5 -5
  39. package/src/FullScreenModal/__snapshots__/FullScreenModal.stories.tsx.snap +18 -18
  40. package/src/Icon/Icon.stories.tsx +3 -3
  41. package/src/Icon/{SpinningIcon.web.css → SpinningIcon.web.module.css} +0 -0
  42. package/src/Icon/SpinningIcon.web.module.css.d.ts +6 -0
  43. package/src/Icon/SpinningIcon.web.tsx +2 -2
  44. package/src/Icon/__snapshots__/Icon.stories.tsx.snap +2 -2
  45. package/src/ListItem/ListItem.stories.tsx +2 -2
  46. package/src/ListItem/__snapshots__/ListItem.stories.tsx.snap +1 -1
  47. package/src/Loader/{LargeLoader.web.css → LargeLoader.web.module.css} +0 -0
  48. package/src/Loader/LargeLoader.web.module.css.d.ts +11 -0
  49. package/src/Loader/LargeLoader.web.tsx +4 -4
  50. package/src/Loader/Loader.stories.tsx +2 -2
  51. package/src/Loader/__snapshots__/Loader.stories.tsx.snap +1 -1
  52. package/src/Message/Message.stories.tsx +2 -2
  53. package/src/Message/__snapshots__/Message.stories.tsx.snap +1 -1
  54. package/src/Modal/Modal.stories.tsx +3 -3
  55. package/src/Modal/__snapshots__/Modal.stories.tsx.snap +6 -6
  56. package/src/Notification/Notification.stories.tsx +2 -2
  57. package/src/Notification/__snapshots__/Notification.stories.tsx.snap +1 -1
  58. package/src/Tag/Tag.stories.tsx +2 -2
  59. package/src/Tag/__snapshots__/Tag.stories.tsx.snap +1 -1
  60. package/src/forms/InputFeedback/InputFeedback.stories.tsx +2 -3
  61. package/src/forms/InputFeedback/__snapshots__/InputFeedback.stories.tsx.snap +1 -1
  62. package/src/forms/InputField/InputField.stories.tsx +2 -2
  63. package/src/forms/InputField/__snapshots__/InputField.stories.tsx.snap +1 -1
  64. package/src/forms/InputText/InputText.stories.tsx +2 -2
  65. package/src/forms/InputText/__snapshots__/InputText.stories.tsx.snap +1 -1
  66. package/src/forms/Label/Label.stories.tsx +2 -2
  67. package/src/forms/Label/__snapshots__/Label.stories.tsx.snap +1 -1
  68. package/src/forms/Radio/Radio.stories.tsx +2 -2
  69. package/src/forms/Radio/__snapshots__/Radio.stories.tsx.snap +1 -1
  70. package/src/forms/TextArea/TextArea.stories.tsx +2 -2
  71. package/src/forms/TextArea/__snapshots__/TextArea.stories.tsx.snap +1 -1
  72. package/src/index.ts +20 -2
  73. package/src/stories/color-tokens.stories.tsx +4 -2
  74. package/src/{stories-list.tsx → stories-list.ts} +0 -0
  75. package/src/story-components/StoryGrid.tsx +1 -1
  76. package/src/story-components/StoryTitle.stories.tsx +1 -1
  77. package/src/story-components/__snapshots__/StoryTitle.stories.tsx.snap +1 -1
  78. package/src/themes/late-ocean/fullScreenModalLateOceanTheme.ts +2 -1
  79. package/src/typography/Typography.stories.tsx +2 -2
  80. package/src/typography/TypographyIcon.stories.tsx +3 -3
  81. package/src/typography/TypographyLink.stories.tsx +2 -2
  82. package/src/typography/TypographyLink.tsx +1 -1
  83. package/src/typography/__snapshots__/Typography.stories.tsx.snap +1 -1
  84. package/src/typography/__snapshots__/TypographyIcon.stories.tsx.snap +1 -1
  85. package/src/typography/__snapshots__/TypographyLink.stories.tsx.snap +1 -1
  86. package/src/utils/storybook/decorators/KittThemeDecorator.tsx +1 -0
  87. package/src/utils/windowSize/__snapshots__/windowSize.stories.tsx.snap +1 -1
  88. package/src/utils/windowSize/windowSize.stories.tsx +2 -2
  89. package/tsconfig.build.json +1 -1
  90. package/tsconfig.json +1 -2
  91. package/dist/index-browser-all-dev.es.js.map +0 -1
  92. package/dist/index-node-12.13-dev.cjs.js.map +0 -1
  93. package/dist/index-node-12.13.cjs.js +0 -2038
  94. package/dist/index-node-12.13.cjs.js.map +0 -1
  95. package/index.js +0 -7
  96. package/story-components.js +0 -7
  97. package/story-components.mjs +0 -5
package/CHANGELOG.md ADDED
@@ -0,0 +1,8 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # 1.0.0 (2021-12-08)
7
+
8
+ **Note:** Version bump only for package @ornikar/kitt-universal
@@ -1,5 +1,4 @@
1
1
  import type { ReactElement, ReactNode } from 'react';
2
- import './SpinningIcon.web.css';
3
2
  export interface SpinningIconProps {
4
3
  children: ReactNode;
5
4
  }
@@ -1 +1 @@
1
- {"version":3,"file":"SpinningIcon.web.d.ts","sourceRoot":"","sources":["../../../src/Icon/SpinningIcon.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAErD,OAAO,wBAAwB,CAAC;AAEhC,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED,wBAAgB,YAAY,CAAC,EAAE,QAAQ,EAAE,EAAE,iBAAiB,GAAG,YAAY,CAE1E"}
1
+ {"version":3,"file":"SpinningIcon.web.d.ts","sourceRoot":"","sources":["../../../src/Icon/SpinningIcon.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIrD,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED,wBAAgB,YAAY,CAAC,EAAE,QAAQ,EAAE,EAAE,iBAAiB,GAAG,YAAY,CAE1E"}
@@ -1,4 +1,3 @@
1
1
  import type { ReactElement } from 'react';
2
- import './LargeLoader.web.css';
3
2
  export declare function LargeLoader(props: Record<string, never>): ReactElement;
4
3
  //# sourceMappingURL=LargeLoader.web.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"LargeLoader.web.d.ts","sourceRoot":"","sources":["../../../src/Loader/LargeLoader.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAE1C,OAAO,uBAAuB,CAAC;AAE/B,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,GAAG,YAAY,CAatE"}
1
+ {"version":3,"file":"LargeLoader.web.d.ts","sourceRoot":"","sources":["../../../src/Loader/LargeLoader.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAI1C,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,GAAG,YAAY,CAatE"}
@@ -2,7 +2,7 @@ export type { AvatarProps } from './Avatar/Avatar';
2
2
  export { Avatar } from './Avatar/Avatar';
3
3
  export type { ButtonProps } from './Button/Button';
4
4
  export { Button } from './Button/Button';
5
- export { useButton } from './Button/useButton';
5
+ export type { CardProps } from './Card/Card';
6
6
  export { Card } from './Card/Card';
7
7
  export type { InputFeedbackProps } from './forms/InputFeedback/InputFeedback';
8
8
  export { InputFeedback } from './forms/InputFeedback/InputFeedback';
@@ -16,29 +16,42 @@ export type { RadioProps } from './forms/Radio/Radio';
16
16
  export { Radio } from './forms/Radio/Radio';
17
17
  export type { TextAreaProps } from './forms/TextArea/TextArea';
18
18
  export { TextArea } from './forms/TextArea/TextArea';
19
+ export type { FullScreenModalProps } from './FullScreenModal/FullScreenModal';
19
20
  export { FullScreenModal } from './FullScreenModal/FullScreenModal';
20
21
  export type { IconProps } from './Icon/Icon';
21
22
  export { Icon } from './Icon/Icon';
23
+ export type { KittBreakpoint, KittBreakpointMax } from './KittBreakpoints';
24
+ export { KittBreakpoints, KittBreakpointsMax } from './KittBreakpoints';
22
25
  export type { ListItemProps } from './ListItem/ListItem';
23
26
  export { ListItem } from './ListItem/ListItem';
27
+ export type { LargeLoaderProps } from './Loader/LargeLoader';
28
+ export { LargeLoader } from './Loader/LargeLoader';
29
+ export type { LoaderProps } from './Loader/Loader';
30
+ export { Loader } from './Loader/Loader';
31
+ export type { MessageProps } from './Message/Message';
24
32
  export { Message } from './Message/Message';
33
+ export type { ModalProps } from './Modal/Modal';
25
34
  export { Modal } from './Modal/Modal';
26
35
  export type { NotificationProps } from './Notification/Notification';
27
36
  export { Notification } from './Notification/Notification';
28
37
  export { Section, Story, StoryDecorator, StoryGrid, StoryTitle } from './story-components';
38
+ export type { TagProps } from './Tag/Tag';
29
39
  export { Tag } from './Tag/Tag';
30
40
  export type { KittTheme } from './themes/default';
31
41
  export { theme } from './themes/default';
32
42
  export type { TooltipProps } from './Tooltip/Tooltip';
33
43
  export { Tooltip } from './Tooltip/Tooltip';
34
- export type { TypographyProps } from './typography/Typography';
44
+ export type { TypographyColor, TypographyHeadingProps, TypographyProps, TypographyTextProps, } from './typography/Typography';
35
45
  export { Typography } from './typography/Typography';
36
46
  export type { TypographyIconProps } from './typography/TypographyIcon';
37
47
  export { TypographyIcon } from './typography/TypographyIcon';
48
+ export type { TypographyLinkProps } from './typography/TypographyLink';
38
49
  export { TypographyLink } from './typography/TypographyLink';
39
50
  export { useKittTheme } from './useKittTheme';
40
51
  export type { WindowSizeHelper } from './utils/windowSize/createWindowSizeHelper';
41
52
  export { createWindowSizeHelper } from './utils/windowSize/createWindowSizeHelper';
53
+ export { MatchWindowSize } from './utils/windowSize/MatchWindowSize';
54
+ export { matchWindowSize, useMatchWindowSize } from './utils/windowSize/useMatchWindowSize';
42
55
  export { useWindowSize } from './utils/windowSize/useWindowSize';
43
56
  export * from '@ornikar/kitt-icons';
44
57
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,YAAY,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC/C,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AACnC,YAAY,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAC9E,OAAO,EAAE,aAAa,EAAE,MAAM,qCAAqC,CAAC;AACpE,YAAY,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAC3D,YAAY,EAAE,cAAc,EAAE,cAAc,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AACvG,OAAO,EAAE,SAAS,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AAC9E,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAC5C,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAC5C,YAAY,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,mCAAmC,CAAC;AACpE,YAAY,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AACnC,YAAY,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC/C,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AACtC,YAAY,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3F,OAAO,EAAE,GAAG,EAAE,MAAM,WAAW,CAAC;AAChC,YAAY,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACzC,YAAY,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,YAAY,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC/D,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,YAAY,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,YAAY,EAAE,gBAAgB,EAAE,MAAM,2CAA2C,CAAC;AAClF,OAAO,EAAE,sBAAsB,EAAE,MAAM,2CAA2C,CAAC;AACnF,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,cAAc,qBAAqB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,YAAY,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,YAAY,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AACnC,YAAY,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAC9E,OAAO,EAAE,aAAa,EAAE,MAAM,qCAAqC,CAAC;AACpE,YAAY,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAC3D,YAAY,EAAE,cAAc,EAAE,cAAc,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AACvG,OAAO,EAAE,SAAS,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AAC9E,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAC5C,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAC5C,YAAY,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,YAAY,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AAC9E,OAAO,EAAE,eAAe,EAAE,MAAM,mCAAmC,CAAC;AACpE,YAAY,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AACnC,YAAY,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAC3E,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACxE,YAAY,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC/C,YAAY,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,YAAY,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,YAAY,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,YAAY,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AACtC,YAAY,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3F,YAAY,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAC1C,OAAO,EAAE,GAAG,EAAE,MAAM,WAAW,CAAC;AAChC,YAAY,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACzC,YAAY,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,YAAY,EACV,eAAe,EACf,sBAAsB,EACtB,eAAe,EACf,mBAAmB,GACpB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,YAAY,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAC7D,YAAY,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,YAAY,EAAE,gBAAgB,EAAE,MAAM,2CAA2C,CAAC;AAClF,OAAO,EAAE,sBAAsB,EAAE,MAAM,2CAA2C,CAAC;AACnF,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AAC5F,OAAO,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AACjE,cAAc,qBAAqB,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import type { ReactElement, ReactNode } from 'react';
2
- import type { TypographyProps } from 'typography/Typography';
2
+ import type { TypographyProps } from '..';
3
3
  export interface StoryGridRowProps {
4
4
  children: NonNullable<ReactNode>;
5
5
  breakpoint?: 'small' | 'medium';
@@ -1 +1 @@
1
- {"version":3,"file":"StoryGrid.d.ts","sourceRoot":"","sources":["../../../src/story-components/StoryGrid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIrD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAuB7D,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;IACjC,UAAU,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;CACjC;AAED,iBAAS,YAAY,CAAC,EAAE,QAAQ,EAAE,UAAoB,EAAE,EAAE,iBAAiB,GAAG,YAAY,CAuBzF;AAED,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,eAAe,CAAC,OAAO,CAAC,CAAC;CACvC;AAED,iBAAS,YAAY,CAAC,EAAE,KAAK,EAAE,UAAU,EAAE,QAAQ,EAAE,EAAE,iBAAiB,GAAG,YAAY,CAWtF;AAED,eAAO,MAAM,SAAS;;;CAGrB,CAAC"}
1
+ {"version":3,"file":"StoryGrid.d.ts","sourceRoot":"","sources":["../../../src/story-components/StoryGrid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIrD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,IAAI,CAAC;AAuB1C,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;IACjC,UAAU,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;CACjC;AAED,iBAAS,YAAY,CAAC,EAAE,QAAQ,EAAE,UAAoB,EAAE,EAAE,iBAAiB,GAAG,YAAY,CAuBzF;AAED,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,eAAe,CAAC,OAAO,CAAC,CAAC;CACvC;AAED,iBAAS,YAAY,CAAC,EAAE,KAAK,EAAE,UAAU,EAAE,QAAQ,EAAE,EAAE,iBAAiB,GAAG,YAAY,CAWtF;AAED,eAAO,MAAM,SAAS;;;CAGrB,CAAC"}
@@ -221,7 +221,8 @@ export declare const theme: {
221
221
  };
222
222
  fullScreenModal: {
223
223
  header: {
224
- padding: number;
224
+ paddingVertical: number;
225
+ paddingHorizontal: number;
225
226
  borderColor: string;
226
227
  };
227
228
  };
@@ -1 +1 @@
1
- {"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../../src/themes/default.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,4CAA4C,CAAC;AAcnF,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAcjB,CAAC;AAEF,oBAAY,SAAS,GAAG;IACtB,IAAI,EAAE,OAAO,KAAK,CAAC;IACnB,UAAU,EAAE,gBAAgB,CAAC;CAC9B,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC"}
1
+ {"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../../src/themes/default.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,4CAA4C,CAAC;AAcnF,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAcjB,CAAC;AAEF,oBAAY,SAAS,GAAG;IACtB,IAAI,EAAE,OAAO,KAAK,CAAC;IACnB,UAAU,EAAE,gBAAgB,CAAC;CAC9B,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC"}
@@ -1,6 +1,7 @@
1
1
  export declare const fullScreenModalLateOceanTheme: {
2
2
  header: {
3
- padding: number;
3
+ paddingVertical: number;
4
+ paddingHorizontal: number;
4
5
  borderColor: string;
5
6
  };
6
7
  };
@@ -1 +1 @@
1
- {"version":3,"file":"fullScreenModalLateOceanTheme.d.ts","sourceRoot":"","sources":["../../../../src/themes/late-ocean/fullScreenModalLateOceanTheme.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,6BAA6B;;;;;CAKzC,CAAC"}
1
+ {"version":3,"file":"fullScreenModalLateOceanTheme.d.ts","sourceRoot":"","sources":["../../../../src/themes/late-ocean/fullScreenModalLateOceanTheme.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,6BAA6B;;;;;;CAMzC,CAAC"}
@@ -5,7 +5,7 @@ interface StyledTypographyLinkProps extends TypographyPropsWithoutRole {
5
5
  disabled?: boolean;
6
6
  noUnderline?: boolean;
7
7
  }
8
- interface TypographyLinkProps extends SetRequired<StyledTypographyLinkProps, 'onPress'> {
8
+ export interface TypographyLinkProps extends SetRequired<StyledTypographyLinkProps, 'onPress'> {
9
9
  href?: string;
10
10
  }
11
11
  export declare function TypographyLink({ disabled, noUnderline, variant, ...otherProps }: TypographyLinkProps): ReactElement;
@@ -1 +1 @@
1
- {"version":3,"file":"TypographyLink.d.ts","sourceRoot":"","sources":["../../../src/typography/TypographyLink.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAI1C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,KAAK,EAAmB,0BAA0B,EAAE,MAAM,cAAc,CAAC;AAGhF,UAAU,yBAA0B,SAAQ,0BAA0B;IACpE,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAiBD,UAAU,mBAAoB,SAAQ,WAAW,CAAC,yBAAyB,EAAE,SAAS,CAAC;IACrF,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,cAAc,CAAC,EAC7B,QAAQ,EACR,WAAW,EACX,OAAgB,EAChB,GAAG,UAAU,EACd,EAAE,mBAAmB,GAAG,YAAY,CAUpC"}
1
+ {"version":3,"file":"TypographyLink.d.ts","sourceRoot":"","sources":["../../../src/typography/TypographyLink.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAI1C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,KAAK,EAAmB,0BAA0B,EAAE,MAAM,cAAc,CAAC;AAGhF,UAAU,yBAA0B,SAAQ,0BAA0B;IACpE,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAiBD,MAAM,WAAW,mBAAoB,SAAQ,WAAW,CAAC,yBAAyB,EAAE,SAAS,CAAC;IAC5F,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,wBAAgB,cAAc,CAAC,EAC7B,QAAQ,EACR,WAAW,EACX,OAAgB,EAChB,GAAG,UAAU,EACd,EAAE,mBAAmB,GAAG,YAAY,CAUpC"}
@@ -1 +1 @@
1
- {"version":3,"file":"KittThemeDecorator.d.ts","sourceRoot":"","sources":["../../../../../src/utils/storybook/decorators/KittThemeDecorator.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAGzD,OAAO,QAAQ,mBAAmB,CAAC;IACjC,UAAiB,YAAa,SAAQ,SAAS;KAAG;CACnD;AAED,UAAU,sBAAsB;IAC9B,QAAQ,EAAE,SAAS,CAAC;CACrB;AACD,wBAAgB,iBAAiB,CAAC,EAAE,QAAQ,EAAE,EAAE,sBAAsB,GAAG,YAAY,CAGpF;AAED,eAAO,MAAM,kBAAkB,uBAM7B,CAAC"}
1
+ {"version":3,"file":"KittThemeDecorator.d.ts","sourceRoot":"","sources":["../../../../../src/utils/storybook/decorators/KittThemeDecorator.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAGzD,OAAO,QAAQ,mBAAmB,CAAC;IACjC,UAAiB,YAAa,SAAQ,SAAS;KAAG;CACnD;AAED,UAAU,sBAAsB;IAC9B,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED,wBAAgB,iBAAiB,CAAC,EAAE,QAAQ,EAAE,EAAE,sBAAsB,GAAG,YAAY,CAGpF;AAED,eAAO,MAAM,kBAAkB,uBAM7B,CAAC"}