@tokenami/ds 0.0.81 → 0.0.82
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/dist/index.cjs +2 -2
- package/dist/index.js +3 -3
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -171,7 +171,7 @@ var colorMixOpacity = (property) => {
|
|
|
171
171
|
var colorMix = (property, color) => {
|
|
172
172
|
return `color-mix(in var(--color-space, srgb), var(--${property}-color), ${color} calc(var(--${property}-percent) * 1%))`;
|
|
173
173
|
};
|
|
174
|
-
var
|
|
174
|
+
var index_default = config.createConfig({
|
|
175
175
|
include: [],
|
|
176
176
|
grid: rem(BASE_GRID_SIZE),
|
|
177
177
|
responsive: {
|
|
@@ -1847,4 +1847,4 @@ var src_default = config.createConfig({
|
|
|
1847
1847
|
}
|
|
1848
1848
|
});
|
|
1849
1849
|
|
|
1850
|
-
module.exports =
|
|
1850
|
+
module.exports = index_default;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createConfig } from '@tokenami/config';
|
|
2
|
-
import { blackP3A,
|
|
2
|
+
import { whiteP3A, blackP3A, skyP3A, mintP3A, limeP3A, grassP3A, greenP3A, jadeP3A, tealP3A, cyanP3A, blueP3A, indigoP3A, irisP3A, violetP3A, purpleP3A, plumP3A, pinkP3A, crimsonP3A, rubyP3A, redP3A, tomatoP3A, orangeP3A, amberP3A, yellowP3A, brownP3A, bronzeP3A, goldP3A, sandP3A, oliveP3A, sageP3A, slateP3A, mauveP3A, grayP3A, skyP3, mintP3, limeP3, grassP3, greenP3, jadeP3, tealP3, cyanP3, blueP3, indigoP3, irisP3, violetP3, purpleP3, plumP3, pinkP3, crimsonP3, rubyP3, redP3, tomatoP3, orangeP3, amberP3, yellowP3, brownP3, bronzeP3, goldP3, sandP3, oliveP3, sageP3, slateP3, mauveP3, grayP3, skyDarkP3A, mintDarkP3A, limeDarkP3A, grassDarkP3A, greenDarkP3A, jadeDarkP3A, tealDarkP3A, cyanDarkP3A, blueDarkP3A, indigoDarkP3A, irisDarkP3A, violetDarkP3A, purpleDarkP3A, plumDarkP3A, pinkDarkP3A, crimsonDarkP3A, rubyDarkP3A, redDarkP3A, tomatoDarkP3A, orangeDarkP3A, amberDarkP3A, yellowDarkP3A, brownDarkP3A, bronzeDarkP3A, goldDarkP3A, sandDarkP3A, oliveDarkP3A, sageDarkP3A, slateDarkP3A, mauveDarkP3A, grayDarkP3A, skyDarkP3, mintDarkP3, limeDarkP3, grassDarkP3, greenDarkP3, jadeDarkP3, tealDarkP3, cyanDarkP3, blueDarkP3, indigoDarkP3, irisDarkP3, violetDarkP3, purpleDarkP3, plumDarkP3, pinkDarkP3, crimsonDarkP3, rubyDarkP3, redDarkP3, tomatoDarkP3, orangeDarkP3, amberDarkP3, yellowDarkP3, brownDarkP3, bronzeDarkP3, goldDarkP3, sandDarkP3, oliveDarkP3, sageDarkP3, slateDarkP3, mauveDarkP3, grayDarkP3 } from '@radix-ui/colors';
|
|
3
3
|
|
|
4
4
|
// src/index.ts
|
|
5
5
|
var shared = {
|
|
@@ -169,7 +169,7 @@ var colorMixOpacity = (property) => {
|
|
|
169
169
|
var colorMix = (property, color) => {
|
|
170
170
|
return `color-mix(in var(--color-space, srgb), var(--${property}-color), ${color} calc(var(--${property}-percent) * 1%))`;
|
|
171
171
|
};
|
|
172
|
-
var
|
|
172
|
+
var index_default = createConfig({
|
|
173
173
|
include: [],
|
|
174
174
|
grid: rem(BASE_GRID_SIZE),
|
|
175
175
|
responsive: {
|
|
@@ -1845,4 +1845,4 @@ var src_default = createConfig({
|
|
|
1845
1845
|
}
|
|
1846
1846
|
});
|
|
1847
1847
|
|
|
1848
|
-
export {
|
|
1848
|
+
export { index_default as default };
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tokenami/ds",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.82",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
|
-
"repository": "
|
|
9
|
+
"repository": "tokenami/tokenami",
|
|
10
10
|
"sideEffects": false,
|
|
11
11
|
"publishConfig": {
|
|
12
12
|
"access": "public"
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@radix-ui/colors": "^3.0.0",
|
|
36
|
-
"@tokenami/config": "0.0.
|
|
36
|
+
"@tokenami/config": "0.0.82"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"tsup": "^
|
|
39
|
+
"tsup": "^8.4.0",
|
|
40
40
|
"typescript": "^5.1.3"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "ba381af577865573615b630033e9fbd429d60bba"
|
|
43
43
|
}
|