@ship-ui/core 0.13.30 → 0.13.32

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ship-ui/core",
3
3
  "license": "MIT",
4
- "version": "0.13.30",
4
+ "version": "0.13.32",
5
5
  "peerDependencies": {
6
6
  "@angular/common": ">=19",
7
7
  "@angular/core": ">=19"
@@ -265,6 +265,16 @@ $shipFormFieldShadow: false !default;
265
265
  margin-right: 0;
266
266
  }
267
267
  }
268
+
269
+ &[type='time'] {
270
+ appearance: textfield;
271
+ text-align: center;
272
+
273
+ &::-webkit-calendar-picker-indicator {
274
+ appearance: none;
275
+ display: none;
276
+ }
277
+ }
268
278
  }
269
279
  }
270
280
 
@@ -76,6 +76,7 @@ body {
76
76
  $titleSizes: (10, 20, 30, 10B, 20B, 30B);
77
77
  $paragraphSizes: (10, 20, 30, 40, 10B, 20B, 30B, 40B);
78
78
  $codeSizes: (10, 20, 30);
79
+ $colorVariants: (primary, accent, warn, error, success);
79
80
 
80
81
  @each $displaySize in $displaySizes {
81
82
  .display-#{$displaySize} {
@@ -100,4 +101,14 @@ body {
100
101
  font: var(--code-#{$codeSize});
101
102
  }
102
103
  }
104
+
105
+ @each $colorVariant in $colorVariants {
106
+ .c-#{$colorVariant} {
107
+ color: var(--#{$colorVariant}-8);
108
+
109
+ sh-icon {
110
+ color: var(--#{$colorVariant}-8);
111
+ }
112
+ }
113
+ }
103
114
  }