@ikatec/nebula-tokens 1.5.0-beta.3 → 1.6.0-beta.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/dist/index.d.mts CHANGED
@@ -186,21 +186,43 @@ interface DropdownMenu {
186
186
  shadow: string;
187
187
  }
188
188
  interface ListItem {
189
- background: {
190
- default: string;
191
- hover: string;
192
- };
193
- border: {
194
- default: string;
195
- };
196
- text: {
197
- default: string;
198
- header: string;
199
- selected: string;
189
+ primary: {
190
+ background: {
191
+ default: string;
192
+ hover: string;
193
+ selected: string;
194
+ };
195
+ border: {
196
+ default: string;
197
+ };
198
+ text: {
199
+ default: string;
200
+ header: string;
201
+ selected: string;
202
+ };
203
+ icon: {
204
+ default: string;
205
+ selected: string;
206
+ };
200
207
  };
201
- icon: {
202
- default: string;
203
- selected: string;
208
+ danger: {
209
+ background: {
210
+ default: string;
211
+ hover: string;
212
+ selected: string;
213
+ };
214
+ border: {
215
+ default: string;
216
+ };
217
+ text: {
218
+ default: string;
219
+ header: string;
220
+ selected: string;
221
+ };
222
+ icon: {
223
+ default: string;
224
+ selected: string;
225
+ };
204
226
  };
205
227
  }
206
228
  interface Tag {
package/dist/index.mjs CHANGED
@@ -187,21 +187,43 @@ var pagination = {
187
187
  }
188
188
  };
189
189
  var listItem = {
190
- background: {
191
- default: "var(--listItem-background)",
192
- hover: "var(--listItem-background-hover)"
193
- },
194
- border: {
195
- default: "var(--listItem-border)"
196
- },
197
- text: {
198
- default: "var(--listItem-text)",
199
- header: "var(--listItem-text-header)",
200
- selected: "var(--listItem-text-selected)"
190
+ primary: {
191
+ background: {
192
+ default: "var(--listItem-background)",
193
+ hover: "var(--listItem-background-hover)",
194
+ selected: "var(--listItem-background-selected)"
195
+ },
196
+ border: {
197
+ default: "var(--listItem-border)"
198
+ },
199
+ text: {
200
+ default: "var(--listItem-text)",
201
+ header: "var(--listItem-text-header)",
202
+ selected: "var(--listItem-text-selected)"
203
+ },
204
+ icon: {
205
+ default: "var(--listItem-icon)",
206
+ selected: "var(--listItem-icon-selected)"
207
+ }
201
208
  },
202
- icon: {
203
- default: "var(--listItem-icon)",
204
- selected: "var(--listItem-icon-selected)"
209
+ danger: {
210
+ background: {
211
+ default: "var(--listItem-danger-background)",
212
+ hover: "var(--listItem-danger-background-hover)",
213
+ selected: "var(--listItem-danger-background-selected)"
214
+ },
215
+ border: {
216
+ default: "var(--listItem-danger-border)"
217
+ },
218
+ text: {
219
+ default: "var(--listItem-danger-text)",
220
+ header: "var(--listItem-danger-text-header)",
221
+ selected: "var(--listItem-danger-text-selected)"
222
+ },
223
+ icon: {
224
+ default: "var(--listItem-danger-icon)",
225
+ selected: "var(--listItem-danger-icon-selected)"
226
+ }
205
227
  }
206
228
  };
207
229
  var tag = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikatec/nebula-tokens",
3
- "version": "1.5.0-beta.3",
3
+ "version": "1.6.0-beta.1",
4
4
  "description": "Design tokens",
5
5
  "publishConfig": {
6
6
  "access": "public"