agroptima-design-system 1.2.18 → 1.2.19
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/workflows/design-system-deploy-production.yaml +1 -1
- package/.github/workflows/publish-package-to-npmjs.yml +2 -2
- package/.github/workflows/run-linters.yml +1 -1
- package/.github/workflows/run-tests.yml +2 -2
- package/package.json +1 -1
- package/src/icons/close-order.svg +1 -0
- package/src/icons/index.tsx +2 -0
- package/src/stories/Changelog.mdx +4 -0
|
@@ -13,9 +13,9 @@ jobs:
|
|
|
13
13
|
build:
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
15
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
16
|
+
- uses: actions/checkout@v6
|
|
17
17
|
# Setup .npmrc file to publish to npm
|
|
18
|
-
- uses: actions/setup-node@
|
|
18
|
+
- uses: actions/setup-node@v6
|
|
19
19
|
with:
|
|
20
20
|
node-version: '20.x'
|
|
21
21
|
registry-url: 'https://registry.npmjs.org'
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#close-order__a)"><path d="M10 20a9.738 9.738 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.137c-.9-.9-1.612-1.958-2.137-3.175A9.738 9.738 0 0 1 0 10c0-1.383.263-2.683.787-3.9a10.099 10.099 0 0 1 2.138-3.175c.9-.9 1.958-1.612 3.175-2.137A9.738 9.738 0 0 1 10 0a9.81 9.81 0 0 1 3.075.475c.967.317 1.858.758 2.675 1.325L14.3 3.275a8.6 8.6 0 0 0-2.025-.938A7.552 7.552 0 0 0 10 2c-2.217 0-4.104.78-5.662 2.338C2.779 5.896 2 7.783 2 10s.78 4.104 2.338 5.662C5.896 17.221 7.783 18 10 18s4.104-.78 5.662-2.338C17.221 14.104 18 12.217 18 10c0-.3-.017-.6-.05-.9a7.357 7.357 0 0 0-.15-.875L19.425 6.6c.183.533.325 1.083.425 1.65.1.567.15 1.15.15 1.75a9.738 9.738 0 0 1-.788 3.9 10.098 10.098 0 0 1-2.137 3.175c-.9.9-1.958 1.613-3.175 2.137A9.738 9.738 0 0 1 10 20Zm-1.4-5.4-4.25-4.25 1.4-1.4L8.6 11.8l10-10.025 1.4 1.4L8.6 14.6Z" fill="#161C26"/></g><defs><clipPath id="close-order__a"><path fill="#fff" d="M0 0h20v20H0z"/></clipPath></defs></svg>
|
package/src/icons/index.tsx
CHANGED
|
@@ -15,6 +15,7 @@ import CheckboxIndeterminate from './checkbox-indeterminate.svg'
|
|
|
15
15
|
import ClassicView from './classic-view.svg'
|
|
16
16
|
import Client from './client.svg'
|
|
17
17
|
import Close from './close.svg'
|
|
18
|
+
import CloseOrder from './close-order.svg'
|
|
18
19
|
import Comment from './comment.svg'
|
|
19
20
|
import CreditCard from './credit-card.svg'
|
|
20
21
|
import CreditNote from './credit-note.svg'
|
|
@@ -87,6 +88,7 @@ export {
|
|
|
87
88
|
ClassicView,
|
|
88
89
|
Client,
|
|
89
90
|
Close,
|
|
91
|
+
CloseOrder,
|
|
90
92
|
Comment,
|
|
91
93
|
CreditCard,
|
|
92
94
|
CreditNote,
|