@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.
- package/CHANGELOG.md +8 -0
- package/dist/definitions/Icon/SpinningIcon.web.d.ts +0 -1
- package/dist/definitions/Icon/SpinningIcon.web.d.ts.map +1 -1
- package/dist/definitions/Loader/LargeLoader.web.d.ts +0 -1
- package/dist/definitions/Loader/LargeLoader.web.d.ts.map +1 -1
- package/dist/definitions/index.d.ts +15 -2
- package/dist/definitions/index.d.ts.map +1 -1
- package/dist/definitions/story-components/StoryGrid.d.ts +1 -1
- package/dist/definitions/story-components/StoryGrid.d.ts.map +1 -1
- package/dist/definitions/themes/default.d.ts +2 -1
- package/dist/definitions/themes/default.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/fullScreenModalLateOceanTheme.d.ts +2 -1
- package/dist/definitions/themes/late-ocean/fullScreenModalLateOceanTheme.d.ts.map +1 -1
- package/dist/definitions/typography/TypographyLink.d.ts +1 -1
- package/dist/definitions/typography/TypographyLink.d.ts.map +1 -1
- package/dist/definitions/utils/storybook/decorators/KittThemeDecorator.d.ts.map +1 -1
- package/dist/index-browser-all.es.android.js +2011 -0
- package/dist/index-browser-all.es.android.js.map +1 -0
- package/dist/{index-browser-all-dev.es.js → index-browser-all.es.ios.js} +109 -36
- package/dist/index-browser-all.es.ios.js.map +1 -0
- package/dist/index-browser-all.es.js +112 -25
- package/dist/index-browser-all.es.js.map +1 -1
- package/dist/index-browser-all.es.web.js +1999 -0
- package/dist/index-browser-all.es.web.js.map +1 -0
- package/dist/{index-node-12.13-dev.cjs.js → index-node-14.17.cjs.js} +94 -22
- package/dist/index-node-14.17.cjs.js.map +1 -0
- package/dist/styles.css +117 -0
- package/dist/tsbuildinfo +1 -1
- package/package.json +14 -28
- package/src/.eslintrc.json +6 -37
- package/src/Avatar/Avatar.stories.tsx +2 -2
- package/src/Avatar/__snapshots__/Avatar.stories.tsx.snap +1 -1
- package/src/Button/Button.stories.tsx +3 -3
- package/src/Button/__snapshots__/Button.stories.tsx.snap +1 -1
- package/src/Card/Card.stories.tsx +2 -2
- package/src/Card/__snapshots__/Card.stories.tsx.snap +1 -1
- package/src/FullScreenModal/FullScreenModal.stories.tsx +3 -3
- package/src/FullScreenModal/Header.tsx +5 -5
- package/src/FullScreenModal/__snapshots__/FullScreenModal.stories.tsx.snap +18 -18
- package/src/Icon/Icon.stories.tsx +3 -3
- package/src/Icon/{SpinningIcon.web.css → SpinningIcon.web.module.css} +0 -0
- package/src/Icon/SpinningIcon.web.module.css.d.ts +6 -0
- package/src/Icon/SpinningIcon.web.tsx +2 -2
- package/src/Icon/__snapshots__/Icon.stories.tsx.snap +2 -2
- package/src/ListItem/ListItem.stories.tsx +2 -2
- package/src/ListItem/__snapshots__/ListItem.stories.tsx.snap +1 -1
- package/src/Loader/{LargeLoader.web.css → LargeLoader.web.module.css} +0 -0
- package/src/Loader/LargeLoader.web.module.css.d.ts +11 -0
- package/src/Loader/LargeLoader.web.tsx +4 -4
- package/src/Loader/Loader.stories.tsx +2 -2
- package/src/Loader/__snapshots__/Loader.stories.tsx.snap +1 -1
- package/src/Message/Message.stories.tsx +2 -2
- package/src/Message/__snapshots__/Message.stories.tsx.snap +1 -1
- package/src/Modal/Modal.stories.tsx +3 -3
- package/src/Modal/__snapshots__/Modal.stories.tsx.snap +6 -6
- package/src/Notification/Notification.stories.tsx +2 -2
- package/src/Notification/__snapshots__/Notification.stories.tsx.snap +1 -1
- package/src/Tag/Tag.stories.tsx +2 -2
- package/src/Tag/__snapshots__/Tag.stories.tsx.snap +1 -1
- package/src/forms/InputFeedback/InputFeedback.stories.tsx +2 -3
- package/src/forms/InputFeedback/__snapshots__/InputFeedback.stories.tsx.snap +1 -1
- package/src/forms/InputField/InputField.stories.tsx +2 -2
- package/src/forms/InputField/__snapshots__/InputField.stories.tsx.snap +1 -1
- package/src/forms/InputText/InputText.stories.tsx +2 -2
- package/src/forms/InputText/__snapshots__/InputText.stories.tsx.snap +1 -1
- package/src/forms/Label/Label.stories.tsx +2 -2
- package/src/forms/Label/__snapshots__/Label.stories.tsx.snap +1 -1
- package/src/forms/Radio/Radio.stories.tsx +2 -2
- package/src/forms/Radio/__snapshots__/Radio.stories.tsx.snap +1 -1
- package/src/forms/TextArea/TextArea.stories.tsx +2 -2
- package/src/forms/TextArea/__snapshots__/TextArea.stories.tsx.snap +1 -1
- package/src/index.ts +20 -2
- package/src/stories/color-tokens.stories.tsx +4 -2
- package/src/{stories-list.tsx → stories-list.ts} +0 -0
- package/src/story-components/StoryGrid.tsx +1 -1
- package/src/story-components/StoryTitle.stories.tsx +1 -1
- package/src/story-components/__snapshots__/StoryTitle.stories.tsx.snap +1 -1
- package/src/themes/late-ocean/fullScreenModalLateOceanTheme.ts +2 -1
- package/src/typography/Typography.stories.tsx +2 -2
- package/src/typography/TypographyIcon.stories.tsx +3 -3
- package/src/typography/TypographyLink.stories.tsx +2 -2
- package/src/typography/TypographyLink.tsx +1 -1
- package/src/typography/__snapshots__/Typography.stories.tsx.snap +1 -1
- package/src/typography/__snapshots__/TypographyIcon.stories.tsx.snap +1 -1
- package/src/typography/__snapshots__/TypographyLink.stories.tsx.snap +1 -1
- package/src/utils/storybook/decorators/KittThemeDecorator.tsx +1 -0
- package/src/utils/windowSize/__snapshots__/windowSize.stories.tsx.snap +1 -1
- package/src/utils/windowSize/windowSize.stories.tsx +2 -2
- package/tsconfig.build.json +1 -1
- package/tsconfig.json +1 -2
- package/dist/index-browser-all-dev.es.js.map +0 -1
- package/dist/index-node-12.13-dev.cjs.js.map +0 -1
- package/dist/index-node-12.13.cjs.js +0 -2038
- package/dist/index-node-12.13.cjs.js.map +0 -1
- package/index.js +0 -7
- package/story-components.js +0 -7
- package/story-components.mjs +0 -5
package/CHANGELOG.md
ADDED
|
@@ -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;
|
|
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 +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;
|
|
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 {
|
|
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,
|
|
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 '
|
|
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,
|
|
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"}
|
|
@@ -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
|
|
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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fullScreenModalLateOceanTheme.d.ts","sourceRoot":"","sources":["../../../../src/themes/late-ocean/fullScreenModalLateOceanTheme.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,6BAA6B
|
|
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,
|
|
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;
|
|
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"}
|