@pselleh/cba-brand 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/.github/dependabot.yml +7 -0
- package/.github/renovate.json +33 -0
- package/.github/workflows/add-depr-ticket-to-depr-board.yml +19 -0
- package/.github/workflows/add-remove-label-on-comment.yml +20 -0
- package/.github/workflows/commitlint.yml +10 -0
- package/.github/workflows/release.yml +29 -0
- package/.github/workflows/self-assign-issue.yml +12 -0
- package/.nvmrc +1 -0
- package/LICENSE +671 -0
- package/Makefile +5 -0
- package/README.md +68 -0
- package/catalog-info.yaml +21 -0
- package/dist/core.css +0 -0
- package/dist/core.css.map +1 -0
- package/dist/core.min.css +2 -0
- package/dist/light.css +4516 -0
- package/dist/light.css.map +1 -0
- package/dist/light.min.css +2 -0
- package/dist/theme-urls.json +21 -0
- package/docs/decisions/0001-record-architecture-decisions.rst +32 -0
- package/docs/decisions/0002-no-dependencies.rst +24 -0
- package/docs/decisions/0003-minimal-breaking-changes.rst +26 -0
- package/docs/how-to/design-tokens-support.rst +142 -0
- package/docs/how-to/style_dictionary_tokens.webp +0 -0
- package/favicon.ico +0 -0
- package/logo-trademark.png +0 -0
- package/logo-trademark.svg +4 -0
- package/logo-white.png +0 -0
- package/logo-white.svg +4 -0
- package/logo.png +0 -0
- package/logo.svg +4 -0
- package/package.json +26 -0
- package/paragon/_fonts.scss +1 -0
- package/paragon/_overrides.scss +2 -0
- package/paragon/_variables.scss +2 -0
- package/paragon/build/core/custom-media-breakpoints.css +16 -0
- package/paragon/build/core/index.css +2 -0
- package/paragon/build/core/variables.css +667 -0
- package/paragon/build/themes/light/index.css +2 -0
- package/paragon/build/themes/light/utility-classes.css +2453 -0
- package/paragon/build/themes/light/variables.css +2063 -0
- package/paragon/core.scss +4 -0
- package/paragon/images/card-imagecap-fallback.png +0 -0
- package/paragon/tokens/.gitkeep +0 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": [
|
|
3
|
+
"config:base",
|
|
4
|
+
"schedule:weekly",
|
|
5
|
+
":automergeLinters",
|
|
6
|
+
":automergeMinor",
|
|
7
|
+
":automergeTesters",
|
|
8
|
+
":enableVulnerabilityAlerts",
|
|
9
|
+
":rebaseStalePrs",
|
|
10
|
+
":semanticCommits",
|
|
11
|
+
":updateNotScheduled"
|
|
12
|
+
],
|
|
13
|
+
"packageRules": [
|
|
14
|
+
{
|
|
15
|
+
"matchDepTypes": [
|
|
16
|
+
"devDependencies"
|
|
17
|
+
],
|
|
18
|
+
"matchUpdateTypes": [
|
|
19
|
+
"lockFileMaintenance",
|
|
20
|
+
"minor",
|
|
21
|
+
"patch",
|
|
22
|
+
"pin"
|
|
23
|
+
],
|
|
24
|
+
"automerge": true
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"matchPackagePatterns": ["@edx", "@openedx"],
|
|
28
|
+
"matchUpdateTypes": ["minor", "patch"],
|
|
29
|
+
"automerge": true
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"timezone": "America/New_York"
|
|
33
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Run the workflow that adds new tickets that are either:
|
|
2
|
+
# - labelled "DEPR"
|
|
3
|
+
# - title starts with "[DEPR]"
|
|
4
|
+
# - body starts with "Proposal Date" (this is the first template field)
|
|
5
|
+
# to the org-wide DEPR project board
|
|
6
|
+
|
|
7
|
+
name: Add newly created DEPR issues to the DEPR project board
|
|
8
|
+
|
|
9
|
+
on:
|
|
10
|
+
issues:
|
|
11
|
+
types: [opened]
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
routeissue:
|
|
15
|
+
uses: openedx/.github/.github/workflows/add-depr-ticket-to-depr-board.yml@master
|
|
16
|
+
secrets:
|
|
17
|
+
GITHUB_APP_ID: ${{ secrets.GRAPHQL_AUTH_APP_ID }}
|
|
18
|
+
GITHUB_APP_PRIVATE_KEY: ${{ secrets.GRAPHQL_AUTH_APP_PEM }}
|
|
19
|
+
SLACK_BOT_TOKEN: ${{ secrets.SLACK_ISSUE_BOT_TOKEN }}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# This workflow runs when a comment is made on the ticket
|
|
2
|
+
# If the comment starts with "label: " it tries to apply
|
|
3
|
+
# the label indicated in rest of comment.
|
|
4
|
+
# If the comment starts with "remove label: ", it tries
|
|
5
|
+
# to remove the indicated label.
|
|
6
|
+
# Note: Labels are allowed to have spaces and this script does
|
|
7
|
+
# not parse spaces (as often a space is legitimate), so the command
|
|
8
|
+
# "label: really long lots of words label" will apply the
|
|
9
|
+
# label "really long lots of words label"
|
|
10
|
+
|
|
11
|
+
name: Allows for the adding and removing of labels via comment
|
|
12
|
+
|
|
13
|
+
on:
|
|
14
|
+
issue_comment:
|
|
15
|
+
types: [created]
|
|
16
|
+
|
|
17
|
+
jobs:
|
|
18
|
+
add_remove_labels:
|
|
19
|
+
uses: openedx/.github/.github/workflows/add-remove-label-on-comment.yml@master
|
|
20
|
+
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- master
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
id-token: write # Required for OIDC
|
|
9
|
+
contents: write # For Semantic Release tagging
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
release:
|
|
13
|
+
name: Release
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- name: Checkout
|
|
17
|
+
uses: actions/checkout@v6
|
|
18
|
+
with:
|
|
19
|
+
fetch-depth: 0
|
|
20
|
+
- name: Setup Node.js
|
|
21
|
+
uses: actions/setup-node@v6
|
|
22
|
+
with:
|
|
23
|
+
node-version-file: '.nvmrc'
|
|
24
|
+
- name: Install dependencies
|
|
25
|
+
run: npm ci
|
|
26
|
+
- name: Release
|
|
27
|
+
run: npx semantic-release@25
|
|
28
|
+
env:
|
|
29
|
+
GITHUB_TOKEN: ${{ secrets.OPENEDX_SEMANTIC_RELEASE_GITHUB_TOKEN }}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# This workflow runs when a comment is made on the ticket
|
|
2
|
+
# If the comment starts with "assign me" it assigns the author to the
|
|
3
|
+
# ticket (case insensitive)
|
|
4
|
+
|
|
5
|
+
name: Assign comment author to ticket if they say "assign me"
|
|
6
|
+
on:
|
|
7
|
+
issue_comment:
|
|
8
|
+
types: [created]
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
self_assign_by_comment:
|
|
12
|
+
uses: openedx/.github/.github/workflows/self-assign-issue.yml@master
|
package/.nvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
24
|