@ornikar/kitt-universal 27.5.1-canary.4d3ec9b2bbb3371c254ae88141f81bb445a59f73.0 → 27.6.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 +6 -5
- package/dist/definitions/TabBar/TabBar.d.ts +6 -4
- package/dist/definitions/TabBar/TabBar.d.ts.map +1 -1
- package/dist/definitions/TabBar/TabBarItem.d.ts +11 -1
- package/dist/definitions/TabBar/TabBarItem.d.ts.map +1 -1
- package/dist/definitions/native-base/KittNativeBaseProvider.d.ts +180 -12
- package/dist/definitions/native-base/KittNativeBaseProvider.d.ts.map +1 -1
- package/dist/definitions/themes/default.d.ts +1 -12
- package/dist/definitions/themes/default.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/icon.d.ts +0 -20
- package/dist/definitions/themes/late-ocean/icon.d.ts.map +1 -1
- package/dist/definitions/themes/late-ocean/tabBar.d.ts +34 -0
- package/dist/definitions/themes/late-ocean/tabBar.d.ts.map +1 -0
- package/dist/definitions/typography/Typography.d.ts.map +1 -1
- package/dist/definitions/typography/TypographyIcon.d.ts.map +1 -1
- package/dist/definitions/typography/utils/getTypographyFamily.d.ts +2 -1
- package/dist/definitions/typography/utils/getTypographyFamily.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +565 -250
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +565 -250
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +456 -140
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.cjs.web.js +457 -141
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +456 -140
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index-node-22.17.es.web.mjs +457 -141
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.js +567 -242
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +566 -241
- package/dist/index.es.web.js.map +1 -1
- package/dist/linaria-themes-metro.es.android.js +179 -36
- package/dist/linaria-themes-metro.es.android.js.map +1 -1
- package/dist/linaria-themes-metro.es.ios.js +179 -36
- package/dist/linaria-themes-metro.es.ios.js.map +1 -1
- package/dist/linaria-themes-node-22.17.cjs.js +179 -36
- package/dist/linaria-themes-node-22.17.cjs.js.map +1 -1
- package/dist/linaria-themes-node-22.17.cjs.web.js +179 -36
- package/dist/linaria-themes-node-22.17.cjs.web.js.map +1 -1
- package/dist/linaria-themes-node-22.17.es.mjs +179 -36
- package/dist/linaria-themes-node-22.17.es.mjs.map +1 -1
- package/dist/linaria-themes-node-22.17.es.web.mjs +179 -36
- package/dist/linaria-themes-node-22.17.es.web.mjs.map +1 -1
- package/dist/linaria-themes.es.js +179 -36
- package/dist/linaria-themes.es.js.map +1 -1
- package/dist/linaria-themes.es.web.js +179 -36
- package/dist/linaria-themes.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +2 -2
- package/scripts/codemods/card-modal.js +155 -0
- package/scripts/codemods/fullscreen-modal.js +155 -0
- package/scripts/codemods/navigation-modal.js +155 -0
- package/scripts/{run-transformers.js → run-codemods.js} +12 -12
- package/scripts/transformers/card-modal.js +0 -136
- package/scripts/transformers/fullscreen-modal.js +0 -138
- package/scripts/transformers/navigation-modal.js +0 -138
- /package/scripts/{transformers → codemods}/__testfixtures__/card-modal/basic.input.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/card-modal/basic.output.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/card-modal/withExpressions.input.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/card-modal/withExpressions.output.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/card-modal/wrongOrder.input.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/card-modal/wrongOrder.output.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/fullscreen-modal/basic.input.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/fullscreen-modal/basic.output.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/fullscreen-modal/withExpressions.input.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/fullscreen-modal/withExpressions.output.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/fullscreen-modal/wrongOrder.input.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/fullscreen-modal/wrongOrder.output.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/navigation-modal/basic.input.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/navigation-modal/basic.output.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/navigation-modal/withExpressions.input.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/navigation-modal/withExpressions.output.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/navigation-modal/wrongOrder.input.js +0 -0
- /package/scripts/{transformers → codemods}/__testfixtures__/navigation-modal/wrongOrder.output.js +0 -0
- /package/scripts/{transformers → codemods}/__tests__/card-modal.test.js +0 -0
- /package/scripts/{transformers → codemods}/__tests__/fullscreen-modal.test.js +0 -0
- /package/scripts/{transformers → codemods}/__tests__/navigation-modal.test.js +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,19 +3,20 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [27.
|
|
6
|
+
## [27.6.0](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@27.5.0...@ornikar/kitt-universal@27.6.0) (2025-09-16)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Features
|
|
10
10
|
|
|
11
|
-
* codemod
|
|
11
|
+
* **kitt-universal:** generate codemod instructions OSE-19616 ([#2682](https://github.com/ornikar/kitt/issues/2682)) ([291e65b](https://github.com/ornikar/kitt/commit/291e65bb3692ccb17d6d78abea0eeea1cf7c20a5))
|
|
12
|
+
* **rebranding:** review `TabBar` OSE-18003 ([#2687](https://github.com/ornikar/kitt/issues/2687)) ([a757d23](https://github.com/ornikar/kitt/commit/a757d237394d9fe65508d11998f6d5f6971b5bbd))
|
|
12
13
|
|
|
13
14
|
|
|
14
15
|
### Bug Fixes
|
|
15
16
|
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
17
|
+
* don't throw when picker used 0 integer as a value [no issue] ([#2684](https://github.com/ornikar/kitt/issues/2684)) ([1a1516b](https://github.com/ornikar/kitt/commit/1a1516bc513683b7485c1a1a11ed916adc3e4ead))
|
|
18
|
+
* **typographyIcon:** can't display an icon in text OSE-19655 ([#2681](https://github.com/ornikar/kitt/issues/2681)) ([eff6571](https://github.com/ornikar/kitt/commit/eff65714f2990d128f080926945dd1003cbcbdf8))
|
|
19
|
+
* **typography:** sub text type OSE-19654 ([#2680](https://github.com/ornikar/kitt/issues/2680)) ([697f12e](https://github.com/ornikar/kitt/commit/697f12ed230499ab56783ac224623d5f4d3995c8))
|
|
19
20
|
|
|
20
21
|
|
|
21
22
|
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { ReactElement, ReactNode } from 'react';
|
|
2
|
-
import type {
|
|
3
|
-
import type { TabBarItemColor, TabBarItemProps } from './TabBarItem';
|
|
2
|
+
import type { TabBarItemColor, TabBarItemProps, TabBarItemType, TabBarItemVariant } from './TabBarItem';
|
|
4
3
|
import { TabBarItem } from './TabBarItem';
|
|
5
4
|
interface ChangeTabObject<T> {
|
|
6
5
|
tab: T;
|
|
@@ -10,7 +9,10 @@ interface RenderTabObject<T> extends ChangeTabObject<T> {
|
|
|
10
9
|
isActive: boolean;
|
|
11
10
|
}
|
|
12
11
|
export type TabBarAlignment = 'left' | 'center';
|
|
13
|
-
export interface TabBarProps<T>
|
|
12
|
+
export interface TabBarProps<T> {
|
|
13
|
+
type?: TabBarItemType;
|
|
14
|
+
variant?: TabBarItemVariant;
|
|
15
|
+
/** @deprecated use variant instead */
|
|
14
16
|
color?: TabBarItemColor;
|
|
15
17
|
align?: TabBarAlignment;
|
|
16
18
|
tabs: T[];
|
|
@@ -20,7 +22,7 @@ export interface TabBarProps<T> extends ViewProps {
|
|
|
20
22
|
}
|
|
21
23
|
export declare function TabBar<T extends {
|
|
22
24
|
key: string;
|
|
23
|
-
}>({ tabs,
|
|
25
|
+
}>({ tabs, variant, type, align, color, activeTabIndex, renderTabItem, onChangeTab, }: TabBarProps<T>): ReactNode;
|
|
24
26
|
export declare namespace TabBar {
|
|
25
27
|
var Item: typeof TabBarItem;
|
|
26
28
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TabBar.d.ts","sourceRoot":"","sources":["../../../src/TabBar/TabBar.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TabBar.d.ts","sourceRoot":"","sources":["../../../src/TabBar/TabBar.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAKrD,OAAO,KAAK,EAAE,eAAe,EAAE,eAAe,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACxG,OAAO,EAAE,UAAU,EAAuB,MAAM,cAAc,CAAC;AAE/D,UAAU,eAAe,CAAC,CAAC;IACzB,GAAG,EAAE,CAAC,CAAC;IACP,KAAK,EAAE,MAAM,CAAC;CACf;AAED,UAAU,eAAe,CAAC,CAAC,CAAE,SAAQ,eAAe,CAAC,CAAC,CAAC;IACrD,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,QAAQ,CAAC;AAEhD,MAAM,WAAW,WAAW,CAAC,CAAC;IAC5B,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB,OAAO,CAAC,EAAE,iBAAiB,CAAC;IAC5B,sCAAsC;IACtC,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;IAClD,aAAa,EAAE,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC,CAAC,KAAK,YAAY,CAAC,eAAe,CAAC,CAAC;CAC9E;AAED,wBAAgB,MAAM,CAAC,CAAC,SAAS;IAAE,GAAG,EAAE,MAAM,CAAA;CAAE,EAAE,EAChD,IAAI,EACJ,OAAmB,EACnB,IAAkB,EAClB,KAAc,EACd,KAAK,EACL,cAAkB,EAClB,aAAa,EACb,WAAW,GACZ,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,SAAS,CAiD5B;yBA1De,MAAM"}
|
|
@@ -2,13 +2,23 @@ import { type ReactNode } from 'react';
|
|
|
2
2
|
import type { PressableProps } from '../native-base/primitives';
|
|
3
3
|
import type { TypographyIconProps } from '../typography/TypographyIcon';
|
|
4
4
|
export type TabBarItemColor = 'black' | 'white';
|
|
5
|
+
export type TabBarItemVariant = 'default' | 'revert';
|
|
6
|
+
export type TabBarItemType = 'underline' | 'solid';
|
|
5
7
|
export interface TabBarItemProps {
|
|
6
8
|
name: ReactNode;
|
|
9
|
+
variant?: TabBarItemVariant;
|
|
10
|
+
type?: TabBarItemType;
|
|
7
11
|
icon?: TypographyIconProps['icon'];
|
|
12
|
+
/** @deprecated use variant instead */
|
|
8
13
|
color?: TabBarItemColor;
|
|
9
14
|
testID?: PressableProps['testID'];
|
|
15
|
+
disabled?: boolean;
|
|
10
16
|
isActive?: boolean;
|
|
17
|
+
isFocusedInternal?: boolean;
|
|
18
|
+
isHoveredInternal?: boolean;
|
|
19
|
+
isPressedInternal?: boolean;
|
|
11
20
|
onPress?: PressableProps['onPress'];
|
|
12
21
|
}
|
|
13
|
-
export declare
|
|
22
|
+
export declare const getVariantFromColor: (color: TabBarItemColor) => TabBarItemVariant;
|
|
23
|
+
export declare function TabBarItem({ name, icon, variant, type, color, testID, disabled, isActive, isFocusedInternal, isHoveredInternal, isPressedInternal, onPress, }: TabBarItemProps): ReactNode;
|
|
14
24
|
//# sourceMappingURL=TabBarItem.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TabBarItem.d.ts","sourceRoot":"","sources":["../../../src/TabBar/TabBarItem.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"TabBarItem.d.ts","sourceRoot":"","sources":["../../../src/TabBar/TabBarItem.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAGhE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AAGxE,MAAM,MAAM,eAAe,GAAG,OAAO,GAAG,OAAO,CAAC;AAChD,MAAM,MAAM,iBAAiB,GAAG,SAAS,GAAG,QAAQ,CAAC;AACrD,MAAM,MAAM,cAAc,GAAG,WAAW,GAAG,OAAO,CAAC;AAEnD,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,SAAS,CAAC;IAChB,OAAO,CAAC,EAAE,iBAAiB,CAAC;IAC5B,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB,IAAI,CAAC,EAAE,mBAAmB,CAAC,MAAM,CAAC,CAAC;IACnC,sCAAsC;IACtC,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB,MAAM,CAAC,EAAE,cAAc,CAAC,QAAQ,CAAC,CAAC;IAClC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,OAAO,CAAC,EAAE,cAAc,CAAC,SAAS,CAAC,CAAC;CACrC;AAED,eAAO,MAAM,mBAAmB,UAAW,eAAe,KAAG,iBAI5D,CAAC;AAmBF,wBAAgB,UAAU,CAAC,EACzB,IAAI,EACJ,IAAI,EACJ,OAAmB,EACnB,IAAkB,EAClB,KAAK,EACL,MAAM,EACN,QAAQ,EACR,QAAgB,EAChB,iBAAyB,EACzB,iBAAyB,EACzB,iBAAyB,EACzB,OAAO,GACR,EAAE,eAAe,GAAG,SAAS,CAqD7B"}
|
|
@@ -826,6 +826,148 @@ export declare function createKittNativeBaseCustomTheme(theme: Theme, appTheme?:
|
|
|
826
826
|
};
|
|
827
827
|
};
|
|
828
828
|
};
|
|
829
|
+
tabBar: {
|
|
830
|
+
underline: {
|
|
831
|
+
default: {
|
|
832
|
+
active: {
|
|
833
|
+
color: {
|
|
834
|
+
default: string | undefined;
|
|
835
|
+
focused: string | undefined;
|
|
836
|
+
hovered: string | undefined;
|
|
837
|
+
pressed: string | undefined;
|
|
838
|
+
};
|
|
839
|
+
indicator: {
|
|
840
|
+
backgroundColor: string | undefined;
|
|
841
|
+
};
|
|
842
|
+
};
|
|
843
|
+
inactive: {
|
|
844
|
+
color: {
|
|
845
|
+
default: string | undefined;
|
|
846
|
+
focused: string | undefined;
|
|
847
|
+
hovered: string | undefined;
|
|
848
|
+
pressed: string | undefined;
|
|
849
|
+
};
|
|
850
|
+
};
|
|
851
|
+
disabled: {
|
|
852
|
+
color: {
|
|
853
|
+
default: string | undefined;
|
|
854
|
+
focused: string | undefined;
|
|
855
|
+
hovered: string | undefined;
|
|
856
|
+
pressed: string | undefined;
|
|
857
|
+
};
|
|
858
|
+
};
|
|
859
|
+
borderBottomColor: string | undefined;
|
|
860
|
+
};
|
|
861
|
+
revert: {
|
|
862
|
+
active: {
|
|
863
|
+
color: {
|
|
864
|
+
default: string | undefined;
|
|
865
|
+
focused: string | undefined;
|
|
866
|
+
hovered: string | undefined;
|
|
867
|
+
pressed: string | undefined;
|
|
868
|
+
};
|
|
869
|
+
indicator: {
|
|
870
|
+
backgroundColor: string | undefined;
|
|
871
|
+
};
|
|
872
|
+
};
|
|
873
|
+
inactive: {
|
|
874
|
+
color: {
|
|
875
|
+
default: string | undefined;
|
|
876
|
+
focused: string | undefined;
|
|
877
|
+
hovered: string | undefined;
|
|
878
|
+
pressed: string | undefined;
|
|
879
|
+
};
|
|
880
|
+
};
|
|
881
|
+
disabled: {
|
|
882
|
+
color: {
|
|
883
|
+
default: string | undefined;
|
|
884
|
+
focused: string | undefined;
|
|
885
|
+
hovered: string | undefined;
|
|
886
|
+
pressed: string | undefined;
|
|
887
|
+
};
|
|
888
|
+
};
|
|
889
|
+
borderBottomColor: string | undefined;
|
|
890
|
+
};
|
|
891
|
+
};
|
|
892
|
+
solid: {
|
|
893
|
+
default: {
|
|
894
|
+
active: {
|
|
895
|
+
color: {
|
|
896
|
+
default: string | undefined;
|
|
897
|
+
focused: string | undefined;
|
|
898
|
+
hovered: string | undefined;
|
|
899
|
+
pressed: string | undefined;
|
|
900
|
+
};
|
|
901
|
+
backgroundColor: {
|
|
902
|
+
default: string | undefined;
|
|
903
|
+
focused: string | undefined;
|
|
904
|
+
hovered: string | undefined;
|
|
905
|
+
pressed: string | undefined;
|
|
906
|
+
};
|
|
907
|
+
};
|
|
908
|
+
inactive: {
|
|
909
|
+
color: {
|
|
910
|
+
default: string | undefined;
|
|
911
|
+
focused: string | undefined;
|
|
912
|
+
hovered: string | undefined;
|
|
913
|
+
pressed: string | undefined;
|
|
914
|
+
};
|
|
915
|
+
backgroundColor: {
|
|
916
|
+
default: string | undefined;
|
|
917
|
+
focused: string | undefined;
|
|
918
|
+
hovered: string | undefined;
|
|
919
|
+
pressed: string | undefined;
|
|
920
|
+
};
|
|
921
|
+
};
|
|
922
|
+
disabled: {
|
|
923
|
+
color: {
|
|
924
|
+
default: string | undefined;
|
|
925
|
+
focused: string | undefined;
|
|
926
|
+
hovered: string | undefined;
|
|
927
|
+
pressed: string | undefined;
|
|
928
|
+
};
|
|
929
|
+
};
|
|
930
|
+
};
|
|
931
|
+
revert: {
|
|
932
|
+
active: {
|
|
933
|
+
color: {
|
|
934
|
+
default: string | undefined;
|
|
935
|
+
focused: string | undefined;
|
|
936
|
+
hovered: string | undefined;
|
|
937
|
+
pressed: string | undefined;
|
|
938
|
+
};
|
|
939
|
+
backgroundColor: {
|
|
940
|
+
default: string | undefined;
|
|
941
|
+
focused: string | undefined;
|
|
942
|
+
hovered: string | undefined;
|
|
943
|
+
pressed: string | undefined;
|
|
944
|
+
};
|
|
945
|
+
};
|
|
946
|
+
inactive: {
|
|
947
|
+
color: {
|
|
948
|
+
default: string | undefined;
|
|
949
|
+
focused: string | undefined;
|
|
950
|
+
hovered: string | undefined;
|
|
951
|
+
pressed: string | undefined;
|
|
952
|
+
};
|
|
953
|
+
backgroundColor: {
|
|
954
|
+
default: string | undefined;
|
|
955
|
+
focused: string | undefined;
|
|
956
|
+
hovered: string | undefined;
|
|
957
|
+
pressed: string | undefined;
|
|
958
|
+
};
|
|
959
|
+
};
|
|
960
|
+
disabled: {
|
|
961
|
+
color: {
|
|
962
|
+
default: string | undefined;
|
|
963
|
+
focused: string | undefined;
|
|
964
|
+
hovered: string | undefined;
|
|
965
|
+
pressed: string | undefined;
|
|
966
|
+
};
|
|
967
|
+
};
|
|
968
|
+
};
|
|
969
|
+
};
|
|
970
|
+
};
|
|
829
971
|
primary: string;
|
|
830
972
|
primaryLight: string;
|
|
831
973
|
accent: string;
|
|
@@ -1232,6 +1374,44 @@ export declare function createKittNativeBaseCustomTheme(theme: Theme, appTheme?:
|
|
|
1232
1374
|
highlight: {
|
|
1233
1375
|
borderRadius: number;
|
|
1234
1376
|
};
|
|
1377
|
+
tabBar: {
|
|
1378
|
+
underline: {
|
|
1379
|
+
default: {
|
|
1380
|
+
active: {
|
|
1381
|
+
borderRadius: number | undefined;
|
|
1382
|
+
};
|
|
1383
|
+
inactive: {
|
|
1384
|
+
borderRadius: number | undefined;
|
|
1385
|
+
};
|
|
1386
|
+
};
|
|
1387
|
+
revert: {
|
|
1388
|
+
active: {
|
|
1389
|
+
borderRadius: number | undefined;
|
|
1390
|
+
};
|
|
1391
|
+
inactive: {
|
|
1392
|
+
borderRadius: number | undefined;
|
|
1393
|
+
};
|
|
1394
|
+
};
|
|
1395
|
+
};
|
|
1396
|
+
solid: {
|
|
1397
|
+
default: {
|
|
1398
|
+
active: {
|
|
1399
|
+
borderRadius: number | undefined;
|
|
1400
|
+
};
|
|
1401
|
+
inactive: {
|
|
1402
|
+
borderRadius: number | undefined;
|
|
1403
|
+
};
|
|
1404
|
+
};
|
|
1405
|
+
revert: {
|
|
1406
|
+
active: {
|
|
1407
|
+
borderRadius: number | undefined;
|
|
1408
|
+
};
|
|
1409
|
+
inactive: {
|
|
1410
|
+
borderRadius: number | undefined;
|
|
1411
|
+
};
|
|
1412
|
+
};
|
|
1413
|
+
};
|
|
1414
|
+
};
|
|
1235
1415
|
tag: {
|
|
1236
1416
|
borderRadius: number;
|
|
1237
1417
|
};
|
|
@@ -1661,18 +1841,6 @@ export declare function createKittNativeBaseCustomTheme(theme: Theme, appTheme?:
|
|
|
1661
1841
|
};
|
|
1662
1842
|
icon: {
|
|
1663
1843
|
readonly defaultSize: 20;
|
|
1664
|
-
readonly typographySize: {
|
|
1665
|
-
readonly header1: import("../themes/late-ocean/icon").TypographyIconConfig;
|
|
1666
|
-
readonly header2: import("../themes/late-ocean/icon").TypographyIconConfig;
|
|
1667
|
-
readonly header3: import("../themes/late-ocean/icon").TypographyIconConfig;
|
|
1668
|
-
readonly header4: import("../themes/late-ocean/icon").TypographyIconConfig;
|
|
1669
|
-
readonly header5: import("../themes/late-ocean/icon").TypographyIconConfig;
|
|
1670
|
-
readonly 'body-large': import("../themes/late-ocean/icon").TypographyIconConfig;
|
|
1671
|
-
readonly 'body-medium': import("../themes/late-ocean/icon").TypographyIconConfig;
|
|
1672
|
-
readonly body: import("../themes/late-ocean/icon").TypographyIconConfig;
|
|
1673
|
-
readonly 'body-small': import("../themes/late-ocean/icon").TypographyIconConfig;
|
|
1674
|
-
readonly 'body-xsmall': import("../themes/late-ocean/icon").TypographyIconConfig;
|
|
1675
|
-
};
|
|
1676
1844
|
};
|
|
1677
1845
|
cardModal: {
|
|
1678
1846
|
header: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KittNativeBaseProvider.d.ts","sourceRoot":"","sources":["../../../src/native-base/KittNativeBaseProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAE3D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGvC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,IAAI,CAAC;AAGpC,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAG/C,MAAM,MAAM,SAAS,CAAC,CAAC,EAAE,CAAC,SAAS,MAAM,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC,QAAQ,CAAC,SAAS,CAAC,GACrE,CAAC,CAAC,MAAM,CAAC,GACT,SAAS,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;AAEtC,KAAK,QAAQ,GAAG,QAAQ,OAAO,CAAC,SAAS,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC;AACpD,KAAK,gBAAgB,GAAG,SAAS,OAAO,CAAC,SAAS,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC;AAE7D,KAAK,eAAe,GAAG,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;AAChD,KAAK,uBAAuB,GAAG,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAAC,CAAC;AA4BhE,MAAM,WAAW,iCAAiC;CAAG;AACrD,MAAM,WAAW,4BAA4B;CAAG;AAChD,MAAM,WAAW,2BAA2B;CAAG;AAC/C,MAAM,WAAW,2BAA2B;CAAG;AAC/C,MAAM,WAAW,6BAA6B;CAAG;AACjD,MAAM,WAAW,6BAA6B;CAAG;AACjD,MAAM,WAAW,kCAAkC;CAAG;AACtD,MAAM,WAAW,2BAA2B;CAAG;AAE/C,MAAM,WAAW,sBAAsB;IACrC,KAAK,EAAE,2BAA2B,CAAC;IACnC,KAAK,EAAE,2BAA2B,CAAC;IACnC,OAAO,EAAE,6BAA6B,CAAC;IACvC,OAAO,EAAE,6BAA6B,CAAC;IACvC,YAAY,EAAE,kCAAkC,CAAC;IACjD,MAAM,EAAE,4BAA4B,CAAC;IACrC,KAAK,EAAE,2BAA2B,CAAC;IACnC,WAAW,EAAE,iCAAiC,CAAC;CAChD;AAED,MAAM,MAAM,4BAA4B,GACpC,OAAO,GACP,OAAO,GACP,SAAS,GACT,SAAS,GACT,cAAc,GACd,QAAQ,GACR,OAAO,GACP,aAAa,CAAC;AAElB,MAAM,MAAM,kCAAkC,GAAG,OAAO,CAAC,MAAM,CAAC,4BAA4B,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC;AAEpH,KAAK,aAAa,CAAC,CAAC,IAAI,CAAC,SAAS,kCAAkC,GAAG,CAAC,GAAG,KAAK,CAAC;AAEjF,MAAM,MAAM,QAAQ,GAAG,OAAO,CAAC,aAAa,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAGtE,wBAAgB,+BAA+B,CAAC,KAAK,EAAE,KAAK,EAAE,QAAQ,CAAC,EAAE,QAAQ
|
|
1
|
+
{"version":3,"file":"KittNativeBaseProvider.d.ts","sourceRoot":"","sources":["../../../src/native-base/KittNativeBaseProvider.tsx"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAk6EhF;AAED,KAAK,yBAAyB,GAAG,UAAU,CAAC,OAAO,+BAA+B,CAAC,CAAC;AAEpF,OAAO,QAAQ,aAAa,CAAC;IAC3B,UAAU,YAAa,SAAQ,yBAAyB;KAAG;CAC5D;AAED,MAAM,WAAW,2BAA2B;IAC1C;;OAEG;IACH,KAAK,EAAE,SAAS,CAAC;IACjB,KAAK,EAAE,uBAAuB,CAAC,OAAO,CAAC,CAAC;IACxC;;;OAGG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAgB,sBAAsB,CAAC,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,2BAA2B,GAAG,SAAS,CAiBnH"}
|
|
@@ -171,18 +171,6 @@ export declare const theme: {
|
|
|
171
171
|
highlight: import("./late-ocean/highlight").HighlightTheme;
|
|
172
172
|
icon: {
|
|
173
173
|
readonly defaultSize: 20;
|
|
174
|
-
readonly typographySize: {
|
|
175
|
-
readonly header1: import("./late-ocean/icon").TypographyIconConfig;
|
|
176
|
-
readonly header2: import("./late-ocean/icon").TypographyIconConfig;
|
|
177
|
-
readonly header3: import("./late-ocean/icon").TypographyIconConfig;
|
|
178
|
-
readonly header4: import("./late-ocean/icon").TypographyIconConfig;
|
|
179
|
-
readonly header5: import("./late-ocean/icon").TypographyIconConfig;
|
|
180
|
-
readonly 'body-large': import("./late-ocean/icon").TypographyIconConfig;
|
|
181
|
-
readonly 'body-medium': import("./late-ocean/icon").TypographyIconConfig;
|
|
182
|
-
readonly body: import("./late-ocean/icon").TypographyIconConfig;
|
|
183
|
-
readonly 'body-small': import("./late-ocean/icon").TypographyIconConfig;
|
|
184
|
-
readonly 'body-xsmall': import("./late-ocean/icon").TypographyIconConfig;
|
|
185
|
-
};
|
|
186
174
|
};
|
|
187
175
|
buttonBadge: import("./late-ocean/buttonBadge").ButtonBadgeTheme;
|
|
188
176
|
iconButton: import("./late-ocean/iconButton").IconButtonTheme;
|
|
@@ -191,6 +179,7 @@ export declare const theme: {
|
|
|
191
179
|
picker: import("./late-ocean/picker").PickerTheme;
|
|
192
180
|
shadows: import("./late-ocean/shadows").ShadowsTheme;
|
|
193
181
|
skeleton: import("./late-ocean/skeleton").SkeletonTheme;
|
|
182
|
+
tabBar: import("./late-ocean/tabBar").TabBarItemTheme;
|
|
194
183
|
tag: import("./late-ocean/tag").TagTheme;
|
|
195
184
|
tooltip: import("./late-ocean/tooltip").TooltipTheme;
|
|
196
185
|
typography: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../../src/themes/default.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../../src/themes/default.ts"],"names":[],"mappings":"AAuDA,eAAO,MAAM,KAAK;;6BAES,MAAM,KAAG,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+BzC,CAAC;AAEF,MAAM,MAAM,KAAK,GAAG,OAAO,KAAK,CAAC"}
|
|
@@ -1,24 +1,4 @@
|
|
|
1
|
-
export interface TypographyIconBreakpointRangeConfig {
|
|
2
|
-
iconSize: number;
|
|
3
|
-
}
|
|
4
|
-
export interface TypographyIconConfig {
|
|
5
|
-
baseAndSmall: TypographyIconBreakpointRangeConfig;
|
|
6
|
-
mediumAndWide: TypographyIconBreakpointRangeConfig;
|
|
7
|
-
}
|
|
8
|
-
export declare const createTypographyIconSizeConfig: (baseAndSmallFontSize: number, mediumAndWideFontSize: number) => TypographyIconConfig;
|
|
9
1
|
export declare const icon: {
|
|
10
2
|
readonly defaultSize: 20;
|
|
11
|
-
readonly typographySize: {
|
|
12
|
-
readonly header1: TypographyIconConfig;
|
|
13
|
-
readonly header2: TypographyIconConfig;
|
|
14
|
-
readonly header3: TypographyIconConfig;
|
|
15
|
-
readonly header4: TypographyIconConfig;
|
|
16
|
-
readonly header5: TypographyIconConfig;
|
|
17
|
-
readonly 'body-large': TypographyIconConfig;
|
|
18
|
-
readonly 'body-medium': TypographyIconConfig;
|
|
19
|
-
readonly body: TypographyIconConfig;
|
|
20
|
-
readonly 'body-small': TypographyIconConfig;
|
|
21
|
-
readonly 'body-xsmall': TypographyIconConfig;
|
|
22
|
-
};
|
|
23
3
|
};
|
|
24
4
|
//# sourceMappingURL=icon.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon.d.ts","sourceRoot":"","sources":["../../../../src/themes/late-ocean/icon.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"icon.d.ts","sourceRoot":"","sources":["../../../../src/themes/late-ocean/icon.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI;;CAEP,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export interface TabBarItemBaseState {
|
|
2
|
+
default?: string;
|
|
3
|
+
focused?: string;
|
|
4
|
+
hovered?: string;
|
|
5
|
+
pressed?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface TabBarItemBaseTheme {
|
|
8
|
+
color: TabBarItemBaseState;
|
|
9
|
+
backgroundColor?: TabBarItemBaseState;
|
|
10
|
+
borderRadius?: number;
|
|
11
|
+
borderColor?: TabBarItemBaseState;
|
|
12
|
+
indicator: {
|
|
13
|
+
backgroundColor?: string;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
export interface BaseVariantTheme {
|
|
17
|
+
active: TabBarItemBaseTheme;
|
|
18
|
+
inactive: TabBarItemBaseTheme;
|
|
19
|
+
disabled: TabBarItemBaseTheme;
|
|
20
|
+
borderBottomColor?: string;
|
|
21
|
+
}
|
|
22
|
+
export interface BaseTypeTheme {
|
|
23
|
+
default: BaseVariantTheme;
|
|
24
|
+
revert: BaseVariantTheme;
|
|
25
|
+
}
|
|
26
|
+
export interface TabBarItemTheme {
|
|
27
|
+
underline: BaseTypeTheme;
|
|
28
|
+
solid: BaseTypeTheme;
|
|
29
|
+
}
|
|
30
|
+
export interface TabBarTheme {
|
|
31
|
+
item: TabBarItemTheme;
|
|
32
|
+
}
|
|
33
|
+
export declare const tabBar: TabBarItemTheme;
|
|
34
|
+
//# sourceMappingURL=tabBar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tabBar.d.ts","sourceRoot":"","sources":["../../../../src/themes/late-ocean/tabBar.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,mBAAmB;IAClC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,mBAAmB,CAAC;IAC3B,eAAe,CAAC,EAAE,mBAAmB,CAAC;IACtC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,mBAAmB,CAAC;IAClC,SAAS,EAAE;QACT,eAAe,CAAC,EAAE,MAAM,CAAC;KAC1B,CAAC;CACH;AAED,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,mBAAmB,CAAC;IAC5B,QAAQ,EAAE,mBAAmB,CAAC;IAC9B,QAAQ,EAAE,mBAAmB,CAAC;IAC9B,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,aAAa;IAC5B,OAAO,EAAE,gBAAgB,CAAC;IAC1B,MAAM,EAAE,gBAAgB,CAAC;CAC1B;AAED,MAAM,WAAW,eAAe;IAC9B,SAAS,EAAE,aAAa,CAAC;IACzB,KAAK,EAAE,aAAa,CAAC;CACtB;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,eAAe,CAAC;CACvB;AAED,eAAO,MAAM,MAAM,EAAE,eA+KpB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Typography.d.ts","sourceRoot":"","sources":["../../../src/typography/Typography.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAE9C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6CAA6C,CAAC;AACjF,OAAO,KAAK,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAE3C,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzD,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAE7D,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,6CAA6C,CAAC;AAElG,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"Typography.d.ts","sourceRoot":"","sources":["../../../src/typography/Typography.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAE9C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6CAA6C,CAAC;AACjF,OAAO,KAAK,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAE3C,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzD,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAE7D,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,6CAA6C,CAAC;AAElG,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAS3D,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,CAAC;AAGhE,MAAM,MAAM,uBAAuB,GAAG,eAAe,GAAG,WAAW,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,GAAG,MAAM,CAAC;AAElG,MAAM,MAAM,qBAAqB,GAAG,WAAW,KAAK,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,KAAK,EAAE,CAAC;AAC/F,MAAM,MAAM,kBAAkB,GAAG,QAAQ,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,EAAE,CAAC;AACzE,MAAM,MAAM,mBAAmB,GAAG,SAAS,OAAO,GAAG,QAAQ,GAAG,OAAO,EAAE,CAAC;AAC1E,MAAM,MAAM,yBAAyB,GAAG,gBAAgB,MAAM,GAAG,KAAK,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,EAAE,CAAC;AAEzG,MAAM,MAAM,cAAc,GACtB,qBAAqB,GACrB,kBAAkB,GAClB,mBAAmB,GACnB,yBAAyB,CAAC;AAC9B,KAAK,iBAAiB,GAAG,SAAS,GAAG,UAAU,GAAG,MAAM,CAAC;AAYzD,wBAAgB,kBAAkB,IAAI,uBAAuB,CAE5D;AAED,wBAAgB,yBAAyB,IAAI,wBAAwB,GAAG,IAAI,CAE3E;AAQD,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAAC,CAAC;AAEnF,KAAK,gCAAgC,GAAG,IAAI,CAC1C,UAAU,EACR,MAAM,MAAM,CAAC,SAAS,EAAE,mBAAmB,CAAC,GAC5C,WAAW,GACX,eAAe,GACf,WAAW,GACX,eAAe,GACf,8BAA8B,CACjC,GACC,IAAI,CAAC,SAAS,EAAE,QAAQ,GAAG,oBAAoB,GAAG,oBAAoB,GAAG,0BAA0B,CAAC,CAAC;AAOvG,MAAM,WAAW,eACf,SAAQ,wBAAwB,EAC9B,gCAAgC,EAChC,IAAI,CAAC,aAAa,CAAC,gCAAgC,CAAC,EAAE,UAAU,GAAG,MAAM,GAAG,MAAM,CAAC;IACrF,IAAI,CAAC,EAAE,wBAAwB,CAAC;IAEhC,iBAAiB,EAAE,WAAW,CAAC,SAAS,CAAC,mBAAmB,CAAC,CAAC,GAAG,WAAW,GAAG,IAAI,CAAC;IACpF,2EAA2E;IAC3E,OAAO,CAAC,EAAE,iBAAiB,CAAC;IAC5B,iGAAiG;IACjG,KAAK,CAAC,EAAE,uBAAuB,CAAC;IAChC,QAAQ,EAAE,SAAS,CAAC;CACrB;AACD,MAAM,MAAM,uCAAuC,GAAG,MAAM,CAAC,eAAe,EAAE,mBAAmB,CAAC,CAAC;AAEnG,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,wBAAwB,GAAG,UAAU,CAAC,UAAU,CAAC,CAqB/F;AAwGD,wBAAgB,UAAU,CAAC,EACzB,iBAAiB,EACjB,IAAI,EAAE,UAAU,EAChB,KAAK,EAAE,WAAW,EAClB,MAAM,EAAE,YAAY,EACpB,KAAK,EAAE,WAAW,EAClB,IAAI,EAAE,UAAU,EAChB,IAA2G,EAC3G,OAAO,EACP,KAAK,EACL,GAAG,UAAU,EACd,EAAE,eAAe,GAAG,SAAS,CA0D7B;yBArEe,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuE1B,MAAM,MAAM,mBAAmB,GAAG,WAAW,CAAC,eAAe,EAAE,mBAAmB,CAAC,CAAC;AACpF,iBAAS,cAAc,CAAC,KAAK,EAAE,mBAAmB,GAAG,SAAS,CAE7D;AAED,iBAAS,mBAAmB,CAAC,KAAK,EAAE,mBAAmB,GAAG,SAAS,CAGlE;AAED,MAAM,MAAM,sBAAsB,GAAG,uCAAuC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TypographyIcon.d.ts","sourceRoot":"","sources":["../../../src/typography/TypographyIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"TypographyIcon.d.ts","sourceRoot":"","sources":["../../../src/typography/TypographyIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAG9C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAIpD,MAAM,WAAW,mBAAoB,SAAQ,MAAM,CAAC,SAAS,EAAE,OAAO,CAAC;IACrE,KAAK,CAAC,EAAE,eAAe,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC;CAC9C;AAqBD,wBAAgB,cAAc,CAAC,EAAE,KAAK,EAAE,GAAG,KAAK,EAAE,EAAE,mBAAmB,GAAG,SAAS,CAMlF"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import type { TypographyType } from '../Typography';
|
|
1
|
+
import type { TypographyBreakpointType, TypographyType } from '../Typography';
|
|
2
2
|
export type TypographyFamily = 'contentCaps' | 'labels' | 'bodies' | 'headings';
|
|
3
3
|
export declare const getTypographyFamily: (type: TypographyType) => TypographyFamily;
|
|
4
4
|
export declare const getTypographyFamilyWithAncestorValue: <Type extends TypographyType>(type: Type | undefined, typographyFamilyInContext: TypographyFamily | null) => TypographyFamily;
|
|
5
|
+
export declare const getTypographyTypeWithAncestorValue: (type: TypographyBreakpointType, typographyTypeInContext: TypographyBreakpointType | null) => TypographyBreakpointType;
|
|
5
6
|
//# sourceMappingURL=getTypographyFamily.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTypographyFamily.d.ts","sourceRoot":"","sources":["../../../../src/typography/utils/getTypographyFamily.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"getTypographyFamily.d.ts","sourceRoot":"","sources":["../../../../src/typography/utils/getTypographyFamily.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,wBAAwB,EAGxB,cAAc,EACf,MAAM,eAAe,CAAC;AAMvB,MAAM,MAAM,gBAAgB,GAAG,aAAa,GAAG,QAAQ,GAAG,QAAQ,GAAG,UAAU,CAAC;AAEhF,eAAO,MAAM,mBAAmB,SAAU,cAAc,KAAG,gBAK1D,CAAC;AAEF,eAAO,MAAM,oCAAoC,mFAEpB,gBAAgB,GAAG,IAAI,KACjD,gBAIF,CAAC;AAEF,eAAO,MAAM,kCAAkC,SACvC,wBAAwB,2BACL,wBAAwB,GAAG,IAAI,KACvD,wBAMF,CAAC"}
|