cetec-design-system 2.2.0-next.0 → 2.2.2-next.0

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.
@@ -766,6 +766,24 @@ const colors$1 = defineTokens.colors({
766
766
  "90": { value: "#1E1E1E" },
767
767
  "100": { value: "#000000" }
768
768
  },
769
+ slate_inverse: {
770
+ "0": { value: "#000000" },
771
+ "1": { value: "#383838" },
772
+ "2": { value: "#474643" },
773
+ "3": { value: "#53504c" },
774
+ "4": { value: "#5d5954" },
775
+ "5": { value: "#66605e" },
776
+ "10": { value: "#8a8985" },
777
+ "20": { value: "#acabaa" },
778
+ "30": { value: "#cbc8c4" },
779
+ "40": { value: "#dfdcdb" },
780
+ "50": { value: "#eaeaea" },
781
+ "60": { value: "#f2f2f2" },
782
+ "70": { value: "#f8f8f8" },
783
+ "80": { value: "#fcfcfc" },
784
+ "90": { value: "#fefefe" },
785
+ "100": { value: "#ffffff" }
786
+ },
769
787
  gold: {
770
788
  "1": { value: "#FFFCF4" },
771
789
  "2": { value: "#FFF9E9" },
@@ -7300,26 +7318,26 @@ const buttonStyles = {
7300
7318
  _disabled: {
7301
7319
  cursor: "not-allowed"
7302
7320
  },
7303
- "&[data-disabled=true]": {
7321
+ "&:has([data-disabled=true])": {
7304
7322
  cursor: "not-allowed"
7305
7323
  },
7306
- "&[data-deleted=true]": {
7324
+ "&:has([data-deleted=true])": {
7307
7325
  textDecoration: "line-through",
7308
7326
  opacity: "[0.6]"
7309
7327
  },
7310
- "&[data-selected=true]": {
7328
+ "&:has([data-selected=true])": {
7311
7329
  bg: "bg.neutral.boldest",
7312
7330
  _icon: {
7313
7331
  fill: "icon.decorative.inverse"
7314
7332
  }
7315
7333
  },
7316
- "&[data-selected=true]:is(:hover, [data-hover])": {
7334
+ "&:has([data-selected=true]):is(:hover, [data-hover])": {
7317
7335
  bg: "bg.neutral.bold.hovered",
7318
7336
  _icon: {
7319
7337
  fill: "icon.decorative.inverse.hovered"
7320
7338
  }
7321
7339
  },
7322
- "&[data-selected=true]:is(:active, [data-active])": {
7340
+ "&:has([data-selected=true]):is(:active, [data-active])": {
7323
7341
  bg: "bg.neutral.bold.pressed",
7324
7342
  _icon: {
7325
7343
  fill: "icon.decorative.inverse.hovered"
@@ -7362,7 +7380,7 @@ const chipRecipe = defineSlotRecipe({
7362
7380
  bg: "bg.neutral.boldest",
7363
7381
  color: "text.inverse"
7364
7382
  },
7365
- "&[data-disabled=true]": {
7383
+ "&:has([data-disabled=true])": {
7366
7384
  cursor: "not-allowed",
7367
7385
  bg: "bg.disabled",
7368
7386
  color: "text.disabled",
@@ -7395,7 +7413,7 @@ const chipRecipe = defineSlotRecipe({
7395
7413
  px: "var(--main-px)",
7396
7414
  fontSize: "var(--main-fs)",
7397
7415
  color: "text",
7398
- "[data-selected=true] &": {
7416
+ "[data-selected=true] > &": {
7399
7417
  color: "text.inverse"
7400
7418
  }
7401
7419
  },
@@ -9174,6 +9192,104 @@ const colors = defineSemanticTokens.colors({
9174
9192
  value: { base: "{colors.magenta.70}", _dark: "{colors.magenta.40}" }
9175
9193
  }
9176
9194
  }
9195
+ },
9196
+ slate: {
9197
+ "0": {
9198
+ value: {
9199
+ base: "{colors.slate.0}",
9200
+ _dark: "{colors.slate_inverse.0}"
9201
+ }
9202
+ },
9203
+ "1": {
9204
+ value: {
9205
+ base: "{colors.slate.1}",
9206
+ _dark: "{colors.slate_inverse.1}"
9207
+ }
9208
+ },
9209
+ "2": {
9210
+ value: {
9211
+ base: "{colors.slate.2}",
9212
+ _dark: "{colors.slate_inverse.2}"
9213
+ }
9214
+ },
9215
+ "3": {
9216
+ value: {
9217
+ base: "{colors.slate.3}",
9218
+ _dark: "{colors.slate_inverse.3}"
9219
+ }
9220
+ },
9221
+ "4": {
9222
+ value: {
9223
+ base: "{colors.slate.4}",
9224
+ _dark: "{colors.slate_inverse.4}"
9225
+ }
9226
+ },
9227
+ "5": {
9228
+ value: {
9229
+ base: "{colors.slate.5}",
9230
+ _dark: "{colors.slate_inverse.5}"
9231
+ }
9232
+ },
9233
+ "10": {
9234
+ value: {
9235
+ base: "{colors.slate.10}",
9236
+ _dark: "{colors.slate_inverse.10}"
9237
+ }
9238
+ },
9239
+ "20": {
9240
+ value: {
9241
+ base: "{colors.slate.20}",
9242
+ _dark: "{colors.slate_inverse.20}"
9243
+ }
9244
+ },
9245
+ "30": {
9246
+ value: {
9247
+ base: "{colors.slate.30}",
9248
+ _dark: "{colors.slate_inverse.30}"
9249
+ }
9250
+ },
9251
+ "40": {
9252
+ value: {
9253
+ base: "{colors.slate.40}",
9254
+ _dark: "{colors.slate_inverse.40}"
9255
+ }
9256
+ },
9257
+ "50": {
9258
+ value: {
9259
+ base: "{colors.slate.50}",
9260
+ _dark: "{colors.slate_inverse.50}"
9261
+ }
9262
+ },
9263
+ "60": {
9264
+ value: {
9265
+ base: "{colors.slate.60}",
9266
+ _dark: "{colors.slate_inverse.60}"
9267
+ }
9268
+ },
9269
+ "70": {
9270
+ value: {
9271
+ base: "{colors.slate.70}",
9272
+ _dark: "{colors.slate_inverse.70}"
9273
+ }
9274
+ },
9275
+ "80": {
9276
+ value: {
9277
+ base: "{colors.slate.80}",
9278
+ _dark: "{colors.slate_inverse.80}"
9279
+ }
9280
+ },
9281
+ "90": {
9282
+ value: {
9283
+ base: "{colors.slate.90}",
9284
+ _dark: "{colors.slate_inverse.90}"
9285
+ }
9286
+ },
9287
+ "100": {
9288
+ value: {
9289
+ base: "{colors.slate.100}",
9290
+ _dark: "{colors.slate_inverse.100}"
9291
+ }
9292
+ }
9177
9293
  }
9178
9294
  },
9179
9295
  blanket: {
@@ -10044,4 +10160,4 @@ export {
10044
10160
  breakpoints as b,
10045
10161
  containerSizes as c
10046
10162
  };
10047
- //# sourceMappingURL=cetec-preset-CyN7J0WL.js.map
10163
+ //# sourceMappingURL=cetec-preset-CcvrY8wh.js.map