@dynatrace/strato-design-tokens 1.1.0 → 1.1.2
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/README.md +10 -9
- package/package.json +18 -1
package/README.md
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
# Strato
|
|
1
|
+
# Strato design tokens
|
|
2
2
|
|
|
3
|
-
This package
|
|
3
|
+
This package contains the visual properties or DNA of Strato, including its colors, typography, spacing, borders, box shadows, elevations, breakpoints, and animations. See [About Strato](https://developer.dynatrace.com/design/about-strato-design-system/) to learn about Strato's design foundations and patterns and the complete Strato React component library.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Documentation
|
|
6
|
+
|
|
7
|
+
Reference tables with the default values for each design token are found in [Strato design tokens](https://developer.dynatrace.com/design/design-tokens/).
|
|
6
8
|
|
|
7
|
-
##
|
|
9
|
+
## Installation
|
|
8
10
|
|
|
9
11
|
```sh
|
|
10
12
|
npm install @dynatrace/strato-design-tokens
|
|
11
13
|
```
|
|
12
14
|
|
|
13
|
-
##
|
|
14
|
-
|
|
15
|
-
Check out the extensive documentation on the [Dynatrace Developer Documentation](https://developer.dynatrace.com/design/design-tokens/)
|
|
15
|
+
## Releases
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
Non-breaking changes are released every two weeks. Breaking changes are limited to twice per year.
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
- Learn about [Strato versioning](https://developer.dynatrace.com/design/strato-versioning/).
|
|
20
|
+
- Check the [release notes](https://developer.dynatrace.com/release-notes/design-system/design-tokens-changelog).
|
package/package.json
CHANGED
|
@@ -1,9 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynatrace/strato-design-tokens",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.2",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://developer.dynatrace.com/design/design-tokens/",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"design-tokens",
|
|
9
|
+
"design-system",
|
|
10
|
+
"ui-library",
|
|
11
|
+
"strato",
|
|
12
|
+
"dynatrace",
|
|
13
|
+
"dynatrace-ui",
|
|
14
|
+
"colors",
|
|
15
|
+
"animations",
|
|
16
|
+
"spacing",
|
|
17
|
+
"borders",
|
|
18
|
+
"elevations",
|
|
19
|
+
"box-shadows",
|
|
20
|
+
"breakpoints",
|
|
21
|
+
"typography",
|
|
22
|
+
"dt-flow"
|
|
23
|
+
],
|
|
7
24
|
"types": "./index.d.ts",
|
|
8
25
|
"main": "./index.js",
|
|
9
26
|
"module": "./esm/index.js",
|