-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release `1.0.0`
- Loading branch information
Showing
33 changed files
with
1,989 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
name: "🐛 Bug Report" | ||
about: Report a reproducible bug or regression. | ||
title: 'Bug: ' | ||
labels: 'bug' | ||
|
||
--- | ||
|
||
<!-- | ||
Please provide a clear and concise description of what the bug is. Include | ||
screenshots if needed. Please test using the latest version of the relevant | ||
React packages to make sure your issue has not already been fixed. | ||
--> | ||
|
||
Application version: | ||
|
||
## Steps To Reproduce | ||
|
||
1. | ||
2. | ||
|
||
<!-- | ||
Your bug will get fixed much faster if we can run your code and it doesn't | ||
have dependencies other than React. Issues without reproduction steps or | ||
code examples may be immediately closed as not actionable. | ||
--> | ||
|
||
Link to code example: | ||
|
||
<!-- | ||
Please provide a CodeSandbox (https://codesandbox.io/s/new), a link to a | ||
repository on GitHub, or provide a minimal code example that reproduces the | ||
problem. You may provide a screenshot of the application if you think it is | ||
relevant to your bug report. Here are some tips for providing a minimal | ||
example: https://stackoverflow.com/help/mcve. | ||
--> | ||
|
||
## The current behavior | ||
|
||
|
||
## The expected behavior |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
name: 🛠 Feature request | ||
about: If you have a feature request for the flex-ui, file it here. | ||
labels: 'type: enhancement' | ||
--- | ||
|
||
**Feature description** | ||
Clearly and concisely describe the feature. | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Bug description | ||
Clearly and concisely describe the problem. | ||
|
||
## Solution description | ||
Describe your code changes in detail for reviewers. Explain the technical solution you have provided and how it fixes the issue case. | ||
|
||
## Covered unit test cases | ||
- [x] yes | ||
- [x] no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
## Feature description | ||
Clearly and concisely describe the feature. | ||
|
||
## Solution description | ||
Describe your code changes in detail for reviewers. | ||
|
||
## Areas affected and ensured | ||
List out the areas affected by your code changes. | ||
|
||
## Covered unit test cases | ||
- [x] yes | ||
- [x] no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
open-pull-requests-limit: 10 | ||
schedule: | ||
interval: daily | ||
time: '07:00' | ||
timezone: Europe/Berlin | ||
|
||
assignees: | ||
- ns-vasilev | ||
reviewers: | ||
- ns-vasilev | ||
|
||
|
||
- package-ecosystem: swift | ||
directory: / | ||
open-pull-requests-limit: 10 | ||
schedule: | ||
interval: daily | ||
time: '07:00' | ||
timezone: Europe/Berlin | ||
|
||
assignees: | ||
- ns-vasilev | ||
reviewers: | ||
- ns-vasilev | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: "flex-ui" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
pull_request: | ||
paths: | ||
- '.swiftlint.yml' | ||
- ".github/workflows/**" | ||
- "Package.swift" | ||
- "Source/**" | ||
- "Tests/**" | ||
|
||
jobs: | ||
SwiftLint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: GitHub Action for SwiftLint | ||
uses: norio-nomura/[email protected] | ||
with: | ||
args: --strict | ||
env: | ||
DIFF_BASE: ${{ github.base_ref }} | ||
iOS: | ||
name: ${{ matrix.name }} | ||
runs-on: ${{ matrix.runsOn }} | ||
env: | ||
DEVELOPER_DIR: "/Applications/${{ matrix.xcode }}.app/Contents/Developer" | ||
timeout-minutes: 20 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- destination: "OS=18.1,name=iPhone 16 Pro" | ||
name: "iOS 18.1" | ||
xcode: "Xcode_16.1" | ||
runsOn: macOS-14 | ||
- destination: "OS=18.0,name=iPhone 16 Pro" | ||
name: "iOS 18.0" | ||
xcode: "Xcode_16.0" | ||
runsOn: macOS-14 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: ${{ matrix.name }} | ||
run: xcodebuild test -scheme "flex-ui" -destination "${{ matrix.destination }}" clean -enableCodeCoverage YES -resultBundlePath "test_output/${{ matrix.name }}.xcresult" || exit 1 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ matrix.name }} | ||
path: test_output | ||
|
||
discover-typos: | ||
name: Discover Typos | ||
runs-on: macOS-13 | ||
env: | ||
DEVELOPER_DIR: /Applications/Xcode_14.1.app/Contents/Developer | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Discover typos | ||
run: | | ||
export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/3.11/bin" | ||
python3 -m pip install --upgrade pip | ||
python3 -m pip install codespell | ||
codespell --ignore-words-list="hart,inout,msdos,sur" --skip="./.build/*,./.git/*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Danger | ||
|
||
on: | ||
pull_request: | ||
types: [synchronize, opened, reopened, labeled, unlabeled, edited] | ||
|
||
env: | ||
LC_CTYPE: en_US.UTF-8 | ||
LANG: en_US.UTF-8 | ||
|
||
jobs: | ||
run-danger: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ruby setup | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.1.4 | ||
bundler-cache: true | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Setup gems | ||
run: | | ||
gem install bundler | ||
bundle install --clean --path vendor/bundle | ||
- name: danger | ||
env: | ||
|
||
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }} | ||
|
||
run: bundle exec danger --verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Stream rules | ||
|
||
--swiftversion 5.3 | ||
|
||
# Use 'swiftformat --options' to list all of the possible options | ||
|
||
--header "\nflex-ui\nCopyright © {created.year} Space Code. All rights reserved.\n//" | ||
|
||
--enable blankLinesBetweenScopes | ||
--enable blankLinesAtStartOfScope | ||
--enable blankLinesAtEndOfScope | ||
--enable blankLinesAroundMark | ||
--enable anyObjectProtocol | ||
--enable consecutiveBlankLines | ||
--enable consecutiveSpaces | ||
--enable duplicateImports | ||
--enable elseOnSameLine | ||
--enable emptyBraces | ||
--enable initCoderUnavailable | ||
--enable leadingDelimiters | ||
--enable numberFormatting | ||
--enable preferKeyPath | ||
--enable redundantBreak | ||
--enable redundantExtensionACL | ||
--enable redundantFileprivate | ||
--enable redundantGet | ||
--enable redundantInit | ||
--enable redundantLet | ||
--enable redundantLetError | ||
--enable redundantNilInit | ||
--enable redundantObjc | ||
--enable redundantParens | ||
--enable redundantPattern | ||
--enable redundantRawValues | ||
--enable redundantReturn | ||
--enable redundantSelf | ||
--enable redundantVoidReturnType | ||
--enable semicolons | ||
--enable sortImports | ||
--enable sortSwitchCases | ||
--enable spaceAroundBraces | ||
--enable spaceAroundBrackets | ||
--enable spaceAroundComments | ||
--enable spaceAroundGenerics | ||
--enable spaceAroundOperators | ||
--enable spaceInsideBraces | ||
--enable spaceInsideBrackets | ||
--enable spaceInsideComments | ||
--enable spaceInsideGenerics | ||
--enable spaceInsideParens | ||
--enable strongOutlets | ||
--enable strongifiedSelf | ||
--enable todos | ||
--enable trailingClosures | ||
--enable unusedArguments | ||
--enable void | ||
--enable markTypes | ||
--enable isEmpty | ||
|
||
# format options | ||
|
||
--wraparguments before-first | ||
--wrapcollections before-first | ||
--maxwidth 140 |
Oops, something went wrong.