@gataca/design-system 0.2.14 → 0.2.16
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/dist/components/index.native.d.ts +2 -1
- package/dist/components/index.web.d.ts +2 -1
- package/dist/components/native/Headings/HeadingContainer/index.native.d.ts +2 -2
- package/dist/components/native/Headings/HeadingCredential/index.native.d.ts +2 -2
- package/dist/index.native.js +1 -1
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +1 -1
- package/dist/index.web.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export { default as Chip } from './native/Chips/Chip/index.native';
|
|
2
|
-
export { default as HeadingCredential } from './native/Headings/HeadingCredential/index.native';
|
|
3
2
|
export { default as ActionItems } from './native/Action/ActionItems/index.native';
|
|
4
3
|
export { default as MultiShadowContainer } from './native/MultiShadowContainer/index.native';
|
|
5
4
|
export { default as CredentialCard } from './native/Cards/Credential/index.native';
|
|
5
|
+
export { default as HeadingCredential } from './native/Headings/HeadingCredential/index.native';
|
|
6
|
+
export { default as HeadingContainer } from './native/Headings/HeadingContainer/index.native';
|
|
6
7
|
export { default as Button } from './native/Buttons/Button/index.native';
|
|
7
8
|
export { default as RoundedButton } from './native/Buttons/RoundedButton/index.native';
|
|
8
9
|
export { default as ButtonIcon } from './native/Buttons/ButtonIcon/index.native';
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export { default as Chip } from './web/Chips/Chip/index.web';
|
|
2
|
-
export { default as HeadingCredential } from './web/Headings/HeadingCredential/index.web';
|
|
3
2
|
export { default as ActionItems } from './web/Action/ActionItems/index.web';
|
|
4
3
|
export { default as CredentialCard } from './web/Cards/Credential/index.web';
|
|
4
|
+
export { default as HeadingCredential } from './web/Headings/HeadingCredential/index.web';
|
|
5
|
+
export { default as HeadingContainer } from './web/Headings/HeadingContainer/index.web';
|
|
5
6
|
export { default as Button } from './web/Buttons/Button/index.web';
|
|
6
7
|
export { default as RoundedButton } from './web/Buttons/RoundedButton/index.web';
|
|
7
8
|
export { default as ButtonIcon } from './web/Buttons/ButtonIcon/index.web';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export default
|
|
1
|
+
import HeadingCredential from './HeadingContainer.native';
|
|
2
|
+
export default HeadingCredential;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export default
|
|
1
|
+
import HeadingCredential from './headingCredential.native';
|
|
2
|
+
export default HeadingCredential;
|