@tokenami/ds 0.0.65 → 0.0.66

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 CHANGED
@@ -1347,6 +1347,9 @@ var src_default = config.createConfig({
1347
1347
  "bg-position": ["background-position"],
1348
1348
  "bg-size": ["background-size"],
1349
1349
  bottom: ["inset-block-end"],
1350
+ "border-color": ["border-block-color", "border-inline-color"],
1351
+ "border-width": ["border-block-width", "border-inline-width"],
1352
+ "border-style": ["border-block-style", "border-inline-style"],
1350
1353
  "border-top": ["border-block-start"],
1351
1354
  "border-right": ["border-inline-end"],
1352
1355
  "border-bottom": ["border-block-end"],
package/dist/index.d.cts CHANGED
@@ -3482,6 +3482,9 @@ declare const _default: {
3482
3482
  readonly 'bg-position': "background-position"[];
3483
3483
  readonly 'bg-size': "background-size"[];
3484
3484
  readonly bottom: "inset-block-end"[];
3485
+ readonly 'border-color': ("border-block-color" | "border-inline-color")[];
3486
+ readonly 'border-width': ("border-block-width" | "border-inline-width")[];
3487
+ readonly 'border-style': ("border-block-style" | "border-inline-style")[];
3485
3488
  readonly 'border-top': "border-block-start"[];
3486
3489
  readonly 'border-right': "border-inline-end"[];
3487
3490
  readonly 'border-bottom': "border-block-end"[];
package/dist/index.d.ts CHANGED
@@ -3482,6 +3482,9 @@ declare const _default: {
3482
3482
  readonly 'bg-position': "background-position"[];
3483
3483
  readonly 'bg-size': "background-size"[];
3484
3484
  readonly bottom: "inset-block-end"[];
3485
+ readonly 'border-color': ("border-block-color" | "border-inline-color")[];
3486
+ readonly 'border-width': ("border-block-width" | "border-inline-width")[];
3487
+ readonly 'border-style': ("border-block-style" | "border-inline-style")[];
3485
3488
  readonly 'border-top': "border-block-start"[];
3486
3489
  readonly 'border-right': "border-inline-end"[];
3487
3490
  readonly 'border-bottom': "border-block-end"[];
package/dist/index.js CHANGED
@@ -1345,6 +1345,9 @@ var src_default = createConfig({
1345
1345
  "bg-position": ["background-position"],
1346
1346
  "bg-size": ["background-size"],
1347
1347
  bottom: ["inset-block-end"],
1348
+ "border-color": ["border-block-color", "border-inline-color"],
1349
+ "border-width": ["border-block-width", "border-inline-width"],
1350
+ "border-style": ["border-block-style", "border-inline-style"],
1348
1351
  "border-top": ["border-block-start"],
1349
1352
  "border-right": ["border-inline-end"],
1350
1353
  "border-bottom": ["border-block-end"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tokenami/ds",
3
- "version": "0.0.65",
3
+ "version": "0.0.66",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -29,16 +29,15 @@
29
29
  "scripts": {
30
30
  "build": "tsup",
31
31
  "dev": "tsup --watch",
32
- "typecheck": "tsc --noEmit",
33
- "typecheck:ci": "tsc --noEmit"
32
+ "typecheck": "tsc --noEmit"
34
33
  },
35
34
  "dependencies": {
36
35
  "@radix-ui/colors": "^3.0.0",
37
- "@tokenami/config": "0.0.65"
36
+ "@tokenami/config": "0.0.66"
38
37
  },
39
38
  "devDependencies": {
40
39
  "tsup": "^7.0.0",
41
40
  "typescript": "^5.1.3"
42
41
  },
43
- "gitHead": "b81db0fafd6e1f6437f3fa20a3b9bcb9cc4aff3c"
42
+ "gitHead": "1cc71d193a6de3a694eca1f28876219dc9b80524"
44
43
  }