Skip to content

Commit

Permalink
Prepare for migration to Github
Browse files Browse the repository at this point in the history
- Remove GitLab CI config file and related functions.yml file.
- Change package name, repository and release documentation.
- Change package name in example apps.
- Change imports in documentation.
  • Loading branch information
maurobender committed Mar 29, 2023
1 parent 5c2330c commit cc1820f
Show file tree
Hide file tree
Showing 105 changed files with 154 additions and 316 deletions.
15 changes: 0 additions & 15 deletions .functions.yml

This file was deleted.

143 changes: 0 additions & 143 deletions .gitlab-ci.yml

This file was deleted.

2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
- Fix ESLint config and issues [`#63`](https://git.amalgama.co/amalgama/packages/pull/63)
- FormControl's children inherit its disabled and error states [`#62`](https://git.amalgama.co/amalgama/packages/pull/62)
- Change library name to @amalgama/embassy-ui [`9695ff9`](https://git.amalgama.co/amalgama/packages/commit/9695ff9386c4a9f7d6b0bef2c68ce663fa7ef64e)
- Change library name to @amalgamaco/embassy-ui [`9695ff9`](https://git.amalgama.co/amalgama/packages/commit/9695ff9386c4a9f7d6b0bef2c68ce663fa7ef64e)
- Fix main project eslint issues [`5d30bfc`](https://git.amalgama.co/amalgama/packages/commit/5d30bfce2f0a2d0ef1a10a4bfd0774eb981b1304)
- Fix ESLint config [`70cd644`](https://git.amalgama.co/amalgama/packages/commit/70cd644802f44fb3ee9a54964d3c4035035f2b35)

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/components/data display/avatar.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { HStack, Avatar } from '@amalgama/embassy-ui'
import { HStack, Avatar } from '@amalgamaco/embassy-ui'
import CodePreview from '@site/src/components/CodePreview';

# Avatar
Expand All @@ -8,7 +8,7 @@ This component is used to display a user's profile picture.
To add the `Avatar` component to your project you can import it as follows:

```tsx
import { Avatar } from '@amalgama/embassy-ui';
import { Avatar } from '@amalgamaco/embassy-ui';
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/components/data display/card.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {CardHeader, IconButton, UIKitIcon} from "@amalgama/embassy-ui";
import {CardHeader, IconButton, UIKitIcon} from "@amalgamaco/embassy-ui";
import CodePreview from '@site/src/components/CodePreview';
import ExampleCard from '@site/src/components/ExampleCard';

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/components/data display/chip.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Chip, IconButton, Icon, Button, HStack } from '@amalgama/embassy-ui'
import { Chip, IconButton, Icon, Button, HStack } from '@amalgamaco/embassy-ui'
import Ionicons from 'react-native-vector-icons/Ionicons';
import CodePreview from '@site/src/components/CodePreview';
import ExampleChip from '@site/src/components/ExampleChip';
Expand All @@ -10,7 +10,7 @@ import ExampleChip from '@site/src/components/ExampleChip';
To add the `Chip` component to your project you can import it as follows:

```tsx
import { Chip } from '@amalgama/embassy-ui';
import { Chip } from '@amalgamaco/embassy-ui';
```

## Example
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/components/data display/image.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Image } from '@amalgama/embassy-ui'
import { Image } from '@amalgamaco/embassy-ui'
import CodePreview from '@site/src/components/CodePreview';

# Image
Expand All @@ -12,7 +12,7 @@ For images to work is necessary to specify the dimensions of the image using the
## Include

```jsx
include { Image } from "@amalgama/embassy-ui"
include { Image } from "@amalgamaco/embassy-ui"
```

## Example
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/components/feedback/banner.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Banner, IconButton, Icon, Button, HStack, VStack } from '@amalgama/embassy-ui'
import { Banner, IconButton, Icon, Button, HStack, VStack } from '@amalgamaco/embassy-ui'
import Ionicons from 'react-native-vector-icons/Ionicons';
import CodePreview from '@site/src/components/CodePreview';
import ExampleBanner from '@site/src/components/ExampleBanner';
Expand All @@ -10,7 +10,7 @@ import ExampleBanner from '@site/src/components/ExampleBanner';
To add the `Banner` component to your project you can import it as follows:

```tsx
import { Banner } from '@amalgama/embassy-ui';
import { Banner } from '@amalgamaco/embassy-ui';
```

## Example
Expand Down
6 changes: 3 additions & 3 deletions docs/docs/components/feedback/dialog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Dialog, IconButton, Icon, Button, HStack, VStack, Box } from '@amalgama/embassy-ui'
import { Dialog, IconButton, Icon, Button, HStack, VStack, Box } from '@amalgamaco/embassy-ui'
import Ionicons from 'react-native-vector-icons/Ionicons';
import CodePreview from '@site/src/components/CodePreview';
import { DialogHighPriority, DialogLowPriority, DialogFullyCustomizable } from '@site/src/components/ExampleDialog';
Expand All @@ -17,7 +17,7 @@ import { DialogHighPriority, DialogLowPriority, DialogFullyCustomizable } from '
To add the `Dialog` component to your project you can import it as follows:

```tsx
import { Dialog } from '@amalgama/embassy-ui';
import { Dialog } from '@amalgamaco/embassy-ui';
```

## Example
Expand All @@ -28,7 +28,7 @@ import { Dialog } from '@amalgama/embassy-ui';

```jsx
import { useState } from 'react';
import { VStack, Text, Box, Button, Dialog, HStack } from '@amalgama/embassy-ui';
import { VStack, Text, Box, Button, Dialog, HStack } from '@amalgamaco/embassy-ui';

const Example = () => {
const [ isModalVisible, setIsModalVisible ] = useState( false );
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/components/forms/button.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Button, HStack, Icon } from '@amalgama/embassy-ui'
import { Button, HStack, Icon } from '@amalgamaco/embassy-ui'
import CodePreview from '@site/src/components/CodePreview';

# Button
Expand All @@ -10,7 +10,7 @@ Buttons allow user to trigger actions or events with a single tap.
To add the `Button` component to your project you can import it as follows:

```tsx
import { Button } from '@amalgama/embassy-ui';
import { Button } from '@amalgamaco/embassy-ui';
```

## Examples
Expand Down
10 changes: 5 additions & 5 deletions docs/docs/components/forms/checkbox.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Checkbox, HStack, Icon } from '@amalgama/embassy-ui'
import { Checkbox, HStack, Icon } from '@amalgamaco/embassy-ui'
import Feather from 'react-native-vector-icons/Feather';
import CodePreview from '@site/src/components/CodePreview';
import ExampleCheckbox from '@site/src/components/ExampleCheckbox';
Expand All @@ -13,7 +13,7 @@ import { useState } from 'react'
To add the `Checkbox` component to your project you can import it as follows:

```tsx
import { Checkbox } from '@amalgama/embassy-ui';
import { Checkbox } from '@amalgamaco/embassy-ui';
```

## Standalone
Expand All @@ -24,7 +24,7 @@ import { Checkbox } from '@amalgama/embassy-ui';
</CodePreview>

```jsx
import { Checkbox } from '@amalgama/embassy-ui';
import { Checkbox } from '@amalgamaco/embassy-ui';
import React, { useState } from 'react';

const App = () => {
Expand Down Expand Up @@ -202,7 +202,7 @@ import EvilIcons from 'react-native-vector-icons/Feather';

```jsx
import React, { useState } from 'react';
import { Checkbox, Text, VStack } from '@amalgama/embassy-ui';
import { Checkbox, Text, VStack } from '@amalgamaco/embassy-ui';

const ExampleCheckboxGroup = () => {
const [ value, setValue ] = useState( [] );
Expand Down Expand Up @@ -253,7 +253,7 @@ If the checkbox group is disabled or not. When it's set to true it disables all
```jsx
import React, { useState } from 'react';
import { Checkbox, Text, VStack } from '@amalgama/embassy-ui';
import { Checkbox, Text, VStack } from '@amalgamaco/embassy-ui';

const ExampleCheckboxGroup = () => {
const [ value, setValue ] = useState( [] );
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/components/forms/date_input.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {VStack, Icon, DateInput} from '@amalgama/embassy-ui'
import {VStack, Icon, DateInput} from '@amalgamaco/embassy-ui'
import CodePreview from '@site/src/components/CodePreview'
import Feather from 'react-native-vector-icons/Feather';
import ExampleTextInput from '@site/src/components/ExampleTextInput'
Expand All @@ -15,7 +15,7 @@ The `DateInput` component allows a user to provide a date by inputing it directl
</CodePreview>

```jsx
import { DateInput } from '@amalgama/embassy-ui';
import { DateInput } from '@amalgamaco/embassy-ui';

<DateInput width="300px" />
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/components/forms/form_control.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FormControl, Checkbox, Radio, HStack, TextInput, Icon, UIKitIcon } from '@amalgama/embassy-ui';
import { FormControl, Checkbox, Radio, HStack, TextInput, Icon, UIKitIcon } from '@amalgamaco/embassy-ui';
import CodePreview from '@site/src/components/CodePreview';

# FormControl
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/components/forms/password_input.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {VStack, Icon, PasswordInput} from '@amalgama/embassy-ui'
import {VStack, Icon, PasswordInput} from '@amalgamaco/embassy-ui'
import CodePreview from '@site/src/components/CodePreview'
import Feather from 'react-native-vector-icons/Feather';

Expand All @@ -13,7 +13,7 @@ The `PasswordInput` is a special type of text input that hides the entered text.
</CodePreview>

```jsx
import { PasswordInput } from '@amalgama/embassy-ui';
import { PasswordInput } from '@amalgamaco/embassy-ui';

<PasswordInput placeholder="Enter your password" width="300px" />
```
Expand Down
10 changes: 5 additions & 5 deletions docs/docs/components/forms/radio.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Radio, HStack, Icon} from '@amalgama/embassy-ui'
import {Radio, HStack, Icon} from '@amalgamaco/embassy-ui'
import Feather from 'react-native-vector-icons/Feather';
import CodePreview from '@site/src/components/CodePreview'
import ExampleRadio from '@site/src/components/ExampleRadio'
Expand All @@ -12,7 +12,7 @@ import {useState} from 'react'
To add the `Radio` component to your project you can import it as follows:

```tsx
import { Radio } from '@amalgama/embassy-ui';
import { Radio } from '@amalgamaco/embassy-ui';
```

## Standalone
Expand All @@ -23,7 +23,7 @@ import { Radio } from '@amalgama/embassy-ui';
</CodePreview>

```jsx
import { Radio } from '@amalgama/embassy-ui';
import { Radio } from '@amalgamaco/embassy-ui';
import React, { useState } from 'react';

const ExampleRadio = () => {
Expand Down Expand Up @@ -167,7 +167,7 @@ import Feather from 'react-native-vector-icons/Feather';

```jsx
import React, { useState } from 'react';
import { Radio, Text, VStack } from '@amalgama/embassy-ui';
import { Radio, Text, VStack } from '@amalgamaco/embassy-ui';

const ExampleRadioGroup = () => {
const [ value, setValue ] = useState();
Expand Down Expand Up @@ -218,7 +218,7 @@ If the radio group is disabled or not. When it's set to true it disables all the
```jsx
import React, { useState } from 'react';
import { Radio, Text, VStack } from '@amalgama/embassy-ui';
import { Radio, Text, VStack } from '@amalgamaco/embassy-ui';

const ExampleRadioGroup = () => {
const [ value, setValue ] = useState();
Expand Down
Loading

0 comments on commit cc1820f

Please sign in to comment.