@servicetitan/hammer-token 2.0.2 → 2.1.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +12 -0
- package/build/web/core/css-utils/border.css +2 -0
- package/build/web/core/css-utils/color.css +2 -0
- package/build/web/core/css-utils/font.css +2 -0
- package/build/web/core/css-utils/spacing.css +2 -0
- package/build/web/core/css-utils/utils.css +2 -0
- package/config.js +2 -0
- package/package.json +1 -1
- package/src/utils/css-utils-format-utils.js +3 -1
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @servicetitan/hammer-token
|
|
2
2
|
|
|
3
|
+
## 2.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1068](https://github.com/servicetitan/hammer/pull/1068) [`14505d4`](https://github.com/servicetitan/hammer/commit/14505d456543988d51197c5e1aaa584365e19247) Thanks [@ericag1985](https://github.com/ericag1985)! - [CSS-utils] fix layers being out of order when using the utility css sheets
|
|
8
|
+
|
|
9
|
+
## 2.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#973](https://github.com/servicetitan/hammer/pull/973) [`254017e`](https://github.com/servicetitan/hammer/commit/254017e119885123599b7bdb549ef6e9354a5e7b) Thanks [@rgdelato](https://github.com/rgdelato)! - Drop support for Node.js 18.x and below
|
|
14
|
+
|
|
3
15
|
## 2.0.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@layer starter, reset, base, state, application;
|
|
2
|
+
|
|
1
3
|
.border-color-danger {border-color: light-dark(var(--status-color-danger, #e13212), #ff745f)}
|
|
2
4
|
.border-color-default {border-color: light-dark(var(--color-neutral-80, #949596), var(--color-neutral-100, #606162))}
|
|
3
5
|
.border-color-primary {border-color: light-dark(var(--status-color-info, #0265dc), #78bbfa)}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@layer starter, reset, base, state, application;
|
|
2
|
+
|
|
1
3
|
.bg-danger-default {background-color: light-dark(var(--status-color-danger, #e13212), #ff745f)}
|
|
2
4
|
.bg-default {background-color: light-dark(var(--color-neutral-0, #ffffff), var(--color-neutral-400, #141414))}
|
|
3
5
|
.bg-disabled {background-color: light-dark(var(--color-neutral-100, #606162), var(--color-neutral-100, #606162))}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@layer starter, reset, base, state, application;
|
|
2
|
+
|
|
1
3
|
.ff-heading {font-family: var(--font-family-display, 'Sofia Pro', SofiaPro, sans-serif)}
|
|
2
4
|
.ff-label {font-family: var(--font-family-base, 'Nunito Sans', sans-serif)}
|
|
3
5
|
.ff-paragraph {font-family: var(--font-family-base, 'Nunito Sans', sans-serif)}
|
|
@@ -285,6 +285,8 @@
|
|
|
285
285
|
.p-inline-start-quarter {padding-inline-start: var(--size-quarter, 0.0625rem)}
|
|
286
286
|
.sr-only {border: 0; clip: rect(0, 0, 0, 0); height: 1px; margin: -1px; overflow: hidden; padding-block: 0; padding-inline: 0; position: absolute; white-space: nowrap; width: 1px;}
|
|
287
287
|
|
|
288
|
+
@layer starter, reset, base, state, application;
|
|
289
|
+
|
|
288
290
|
@layer application {
|
|
289
291
|
.bg-danger-default {background-color: light-dark(var(--status-color-danger, #e13212), #ff745f)}
|
|
290
292
|
.bg-default {background-color: light-dark(var(--color-neutral-0, #ffffff), var(--color-neutral-400, #141414))}
|
package/config.js
CHANGED
package/package.json
CHANGED
|
@@ -14,7 +14,9 @@ const cssUtilsFormatter = (dictionary, generateFn, hasDarkValues) => {
|
|
|
14
14
|
.sort((a, b) => a.localeCompare(b))
|
|
15
15
|
.join(`\n`);
|
|
16
16
|
|
|
17
|
-
return
|
|
17
|
+
return `@layer starter, reset, base, state, application;
|
|
18
|
+
|
|
19
|
+
${result}
|
|
18
20
|
|
|
19
21
|
@layer application {
|
|
20
22
|
${result.replaceAll("\n", "\n ")}
|