@acmekit/ui-preset 2.13.1
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/.env.template +2 -0
- package/.turbo/turbo-build.log +16 -0
- package/CHANGELOG.md +3 -0
- package/LICENSE +21 -0
- package/README.md +36 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +932 -0
- package/dist/index.mjs +981 -0
- package/package.json +39 -0
- package/src/constants.ts +32 -0
- package/src/index.ts +3 -0
- package/src/plugin.ts +69 -0
- package/src/preset.ts +10 -0
- package/src/theme/extension/theme.ts +341 -0
- package/src/theme/tokens/colors.ts +186 -0
- package/src/theme/tokens/components.ts +4 -0
- package/src/theme/tokens/effects.ts +52 -0
- package/src/theme/tokens/typography.ts +212 -0
- package/tsconfig.json +20 -0
- package/tsup.config.ts +10 -0
package/.env.template
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
2
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
3
|
+
[34mCLI[39m tsup v8.5.1
|
|
4
|
+
[34mCLI[39m Using tsup config: /Users/deux/Projects/Monorepo/personal/acmekit/packages/design-system/ui-preset/tsup.config.ts
|
|
5
|
+
[34mCLI[39m Target: node16
|
|
6
|
+
[34mCLI[39m Cleaning output folder
|
|
7
|
+
[34mCJS[39m Build start
|
|
8
|
+
[34mESM[39m Build start
|
|
9
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m46.08 KB[39m
|
|
10
|
+
[32mESM[39m ⚡️ Build success in 26ms
|
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m42.09 KB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 26ms
|
|
13
|
+
DTS Build start
|
|
14
|
+
DTS ⚡️ Build success in 2021ms
|
|
15
|
+
DTS dist/index.d.ts 13.00 B
|
|
16
|
+
DTS dist/index.d.mts 13.00 B
|
package/CHANGELOG.md
ADDED
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Medusajs
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://www.acmekit.com">
|
|
3
|
+
<picture>
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/59018053/229103275-b5e482bb-4601-46e6-8142-244f531cebdb.svg">
|
|
5
|
+
<source media="(prefers-color-scheme: light)" srcset="https://user-images.githubusercontent.com/59018053/229103726-e5b529a3-9b3f-4970-8a1f-c6af37f087bf.svg">
|
|
6
|
+
<img alt="AcmeKit logo" src="https://user-images.githubusercontent.com/59018053/229103726-e5b529a3-9b3f-4970-8a1f-c6af37f087bf.svg">
|
|
7
|
+
</picture>
|
|
8
|
+
</a>
|
|
9
|
+
</p>
|
|
10
|
+
<h1 align="center">
|
|
11
|
+
AcmeKit UI
|
|
12
|
+
</h1>
|
|
13
|
+
|
|
14
|
+
<h4 align="center">
|
|
15
|
+
<a href="https://docs.acmekit.com/ui">Documentation</a> |
|
|
16
|
+
<a href="https://www.acmekit.com">Website</a>
|
|
17
|
+
</h4>
|
|
18
|
+
|
|
19
|
+
<p align="center">
|
|
20
|
+
AcmeKit's design system tokens.
|
|
21
|
+
</p>
|
|
22
|
+
<p align="center">
|
|
23
|
+
<a href="https://github.com/acmekit/acmekit/blob/develop/LICENSE">
|
|
24
|
+
<img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="AcmeKit is released under the MIT license." />
|
|
25
|
+
</a>
|
|
26
|
+
<a href="https://discord.gg/xpCwq3Kfn8">
|
|
27
|
+
<img src="https://img.shields.io/badge/chat-on%20discord-7289DA.svg" alt="Discord Chat" />
|
|
28
|
+
</a>
|
|
29
|
+
<a href="https://twitter.com/intent/follow?screen_name=acmekit">
|
|
30
|
+
<img src="https://img.shields.io/twitter/follow/acmekit.svg?label=Follow%20@acmekit" alt="Follow @acmekit" />
|
|
31
|
+
</a>
|
|
32
|
+
</p>
|
|
33
|
+
|
|
34
|
+
## Note
|
|
35
|
+
|
|
36
|
+
This package is auto-generated, and requires a Figma token associated with the AcmeKit Figma organization. If you are a not a AcmeKit team member, you will not be able to make changes to this package. If you discover any issues please open an issue instead of a PR.
|
package/dist/index.d.mts
ADDED
package/dist/index.d.ts
ADDED