@dynatrace/strato-design-tokens 1.1.4 → 1.2.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.
- package/colors/index.d.ts +4 -0
- package/colors/index.js +4 -0
- package/esm/colors/index.js +4 -0
- package/esm/colors/index.js.map +2 -2
- package/esm/variables/index.js +1 -0
- package/esm/variables/index.js.map +2 -2
- package/esm/variables-dark/index.js +5 -4
- package/esm/variables-dark/index.js.map +2 -2
- package/package.json +1 -1
- package/styles/variables-dark.css +5 -4
- package/styles/variables.css +1 -0
- package/variables/index.d.ts +1 -0
- package/variables/index.js +1 -0
- package/variables-dark/index.d.ts +1 -0
- package/variables-dark/index.js +5 -4
package/colors/index.d.ts
CHANGED
|
@@ -1608,6 +1608,10 @@ declare const _default: {
|
|
|
1608
1608
|
/** Css custom property: --dt-colors-charts-security-risk-level-low-default. Default value: #134fc9. */
|
|
1609
1609
|
Default: string;
|
|
1610
1610
|
};
|
|
1611
|
+
None: {
|
|
1612
|
+
/** Css custom property: --dt-colors-charts-security-risk-level-none-default. Default value: #2c2f3f. */
|
|
1613
|
+
Default: string;
|
|
1614
|
+
};
|
|
1611
1615
|
};
|
|
1612
1616
|
VulnerabilityStatus: {
|
|
1613
1617
|
Muted: {
|
package/colors/index.js
CHANGED
|
@@ -1626,6 +1626,10 @@ const Charts = {
|
|
|
1626
1626
|
Low: {
|
|
1627
1627
|
/** Css custom property: --dt-colors-charts-security-risk-level-low-default. Default value: #134fc9. */
|
|
1628
1628
|
Default: "var(--dt-colors-charts-security-risk-level-low-default, #134fc9)"
|
|
1629
|
+
},
|
|
1630
|
+
None: {
|
|
1631
|
+
/** Css custom property: --dt-colors-charts-security-risk-level-none-default. Default value: #2c2f3f. */
|
|
1632
|
+
Default: "var(--dt-colors-charts-security-risk-level-none-default, #2c2f3f)"
|
|
1629
1633
|
}
|
|
1630
1634
|
},
|
|
1631
1635
|
VulnerabilityStatus: {
|
package/esm/colors/index.js
CHANGED
|
@@ -1603,6 +1603,10 @@ const Charts = {
|
|
|
1603
1603
|
Low: {
|
|
1604
1604
|
/** Css custom property: --dt-colors-charts-security-risk-level-low-default. Default value: #134fc9. */
|
|
1605
1605
|
Default: "var(--dt-colors-charts-security-risk-level-low-default, #134fc9)"
|
|
1606
|
+
},
|
|
1607
|
+
None: {
|
|
1608
|
+
/** Css custom property: --dt-colors-charts-security-risk-level-none-default. Default value: #2c2f3f. */
|
|
1609
|
+
Default: "var(--dt-colors-charts-security-risk-level-none-default, #2c2f3f)"
|
|
1606
1610
|
}
|
|
1607
1611
|
},
|
|
1608
1612
|
VulnerabilityStatus: {
|