@tokenami/config 0.0.20 → 0.0.21

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.d.mts CHANGED
@@ -7,19 +7,19 @@ declare const defaultConfig: {
7
7
  readonly theme: {};
8
8
  readonly aliases: {};
9
9
  readonly selectors: {
10
- readonly active: string;
11
10
  readonly after: string;
12
11
  readonly before: string;
13
- readonly disabled: string;
14
12
  readonly even: string;
13
+ readonly odd: string;
15
14
  readonly 'first-child': string;
15
+ readonly 'last-child': string;
16
+ readonly placeholder: string;
17
+ readonly hover: string;
16
18
  readonly focus: string;
17
19
  readonly 'focus-visible': string;
18
20
  readonly 'focus-within': string;
19
- readonly hover: string;
20
- readonly 'last-child': string;
21
- readonly odd: string;
22
- readonly placeholder: string;
21
+ readonly active: string;
22
+ readonly disabled: string;
23
23
  };
24
24
  readonly properties: {
25
25
  readonly 'accent-color': readonly "color"[];
package/dist/index.d.ts CHANGED
@@ -7,19 +7,19 @@ declare const defaultConfig: {
7
7
  readonly theme: {};
8
8
  readonly aliases: {};
9
9
  readonly selectors: {
10
- readonly active: string;
11
10
  readonly after: string;
12
11
  readonly before: string;
13
- readonly disabled: string;
14
12
  readonly even: string;
13
+ readonly odd: string;
15
14
  readonly 'first-child': string;
15
+ readonly 'last-child': string;
16
+ readonly placeholder: string;
17
+ readonly hover: string;
16
18
  readonly focus: string;
17
19
  readonly 'focus-visible': string;
18
20
  readonly 'focus-within': string;
19
- readonly hover: string;
20
- readonly 'last-child': string;
21
- readonly odd: string;
22
- readonly placeholder: string;
21
+ readonly active: string;
22
+ readonly disabled: string;
23
23
  };
24
24
  readonly properties: {
25
25
  readonly 'accent-color': readonly "color"[];
package/dist/index.js CHANGED
@@ -127,19 +127,19 @@ var defaultConfig = createConfig({
127
127
  theme: {},
128
128
  aliases: {},
129
129
  selectors: {
130
- active: "&:active",
131
130
  after: "&::after",
132
131
  before: "&::before",
133
- disabled: "&:disabled",
134
132
  even: "&:nth-child(even)",
133
+ odd: "&:nth-child(odd)",
135
134
  "first-child": "&:first-child",
135
+ "last-child": "&:last-child",
136
+ placeholder: "&::placeholder",
137
+ hover: "&:hover",
136
138
  focus: "&:focus",
137
139
  "focus-visible": "&:focus-visible",
138
140
  "focus-within": "&:focus-within",
139
- hover: "&:hover",
140
- "last-child": "&:last-child",
141
- odd: "&:nth-child(odd)",
142
- placeholder: "&::placeholder"
141
+ active: "&:active",
142
+ disabled: "&:disabled"
143
143
  },
144
144
  properties: {
145
145
  "accent-color": ["color"],
package/dist/index.mjs CHANGED
@@ -77,19 +77,19 @@ var defaultConfig = createConfig({
77
77
  theme: {},
78
78
  aliases: {},
79
79
  selectors: {
80
- active: "&:active",
81
80
  after: "&::after",
82
81
  before: "&::before",
83
- disabled: "&:disabled",
84
82
  even: "&:nth-child(even)",
83
+ odd: "&:nth-child(odd)",
85
84
  "first-child": "&:first-child",
85
+ "last-child": "&:last-child",
86
+ placeholder: "&::placeholder",
87
+ hover: "&:hover",
86
88
  focus: "&:focus",
87
89
  "focus-visible": "&:focus-visible",
88
90
  "focus-within": "&:focus-within",
89
- hover: "&:hover",
90
- "last-child": "&:last-child",
91
- odd: "&:nth-child(odd)",
92
- placeholder: "&::placeholder"
91
+ active: "&:active",
92
+ disabled: "&:disabled"
93
93
  },
94
94
  properties: {
95
95
  "accent-color": ["color"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tokenami/config",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -17,7 +17,7 @@
17
17
  "csstype": "^3.1.2",
18
18
  "tsup": "^7.0.0",
19
19
  "typescript": "^5.1.3",
20
- "@tokenami/dev": "0.0.20"
20
+ "@tokenami/dev": "0.0.21"
21
21
  },
22
22
  "scripts": {
23
23
  "build": "tsup src/index.ts --format=esm,cjs --dts",