@dynatrace/strato-design-tokens 0.18.0 → 0.19.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/breakpoints-js/index.d.ts +52 -0
- package/breakpoints-js/index.js +15 -0
- package/colors/index.d.ts +1061 -761
- package/colors/index.js +2 -2
- package/{animations/index.esm.js → esm/animations/index.js} +1 -1
- package/{animations/index.esm.js.map → esm/animations/index.js.map} +1 -1
- package/{animations-js/index.esm.js → esm/animations-js/index.js} +1 -1
- package/{animations-js/index.esm.js.map → esm/animations-js/index.js.map} +1 -1
- package/{borders/index.esm.js → esm/borders/index.js} +1 -1
- package/{borders/index.esm.js.map → esm/borders/index.js.map} +1 -1
- package/{box-shadows/index.esm.js → esm/box-shadows/index.js} +1 -1
- package/{box-shadows/index.esm.js.map → esm/box-shadows/index.js.map} +1 -1
- package/{breakpoints/index.esm.js → esm/breakpoints/index.js} +1 -1
- package/{breakpoints/index.esm.js.map → esm/breakpoints/index.js.map} +1 -1
- package/esm/breakpoints-js/index.js +16 -0
- package/esm/breakpoints-js/index.js.map +7 -0
- package/esm/colors/index.js +16 -0
- package/esm/colors/index.js.map +7 -0
- package/{easings/index.esm.js → esm/easings/index.js} +1 -1
- package/{easings/index.esm.js.map → esm/easings/index.js.map} +1 -1
- package/{easings-js/index.esm.js → esm/easings-js/index.js} +1 -1
- package/{easings-js/index.esm.js.map → esm/easings-js/index.js.map} +1 -1
- package/{elevations/index.esm.js → esm/elevations/index.js} +1 -1
- package/{elevations/index.esm.js.map → esm/elevations/index.js.map} +1 -1
- package/{index.esm.js → esm/index.js} +2 -2
- package/esm/index.js.map +7 -0
- package/{spacings/index.esm.js → esm/spacings/index.js} +1 -1
- package/{spacings/index.esm.js.map → esm/spacings/index.js.map} +1 -1
- package/{timings/index.esm.js → esm/timings/index.js} +1 -1
- package/{timings/index.esm.js.map → esm/timings/index.js.map} +1 -1
- package/{timings-js/index.esm.js → esm/timings-js/index.js} +1 -1
- package/{timings-js/index.esm.js.map → esm/timings-js/index.js.map} +1 -1
- package/{typography/index.esm.js → esm/typography/index.js} +1 -1
- package/{typography/index.esm.js.map → esm/typography/index.js.map} +1 -1
- package/esm/variables/index.js +16 -0
- package/esm/variables/index.js.map +7 -0
- package/esm/variables-dark/index.js +16 -0
- package/esm/variables-dark/index.js.map +7 -0
- package/index.d.ts +2 -1
- package/index.js +1 -1
- package/package.json +76 -69
- package/variables/index.d.ts +234 -337
- package/variables/index.js +2 -2
- package/variables-dark/index.d.ts +234 -337
- package/variables-dark/index.js +2 -2
- package/colors/index.esm.js +0 -16
- package/colors/index.esm.js.map +0 -7
- package/index.esm.js.map +0 -7
- package/variables/index.esm.js +0 -16
- package/variables/index.esm.js.map +0 -7
- package/variables-dark/index.esm.js +0 -16
- package/variables-dark/index.esm.js.map +0 -7
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
declare const _default: {
|
|
17
|
+
Max: {
|
|
18
|
+
/**
|
|
19
|
+
* Use to constrain screen sizes that are 640px wide or less.
|
|
20
|
+
* Value: 640.
|
|
21
|
+
*/
|
|
22
|
+
Mobile: number;
|
|
23
|
+
/**
|
|
24
|
+
* Use to constrain screen sizes that are 641px wide or more.
|
|
25
|
+
* Value: 960.
|
|
26
|
+
*/
|
|
27
|
+
Tablet: number;
|
|
28
|
+
/**
|
|
29
|
+
* Use to constrain screen sizes that are 960px wide or less.
|
|
30
|
+
* Value: 1920.
|
|
31
|
+
*/
|
|
32
|
+
Desktop: number;
|
|
33
|
+
};
|
|
34
|
+
Min: {
|
|
35
|
+
/**
|
|
36
|
+
* Use to constrain screen sizes that are 961px wide or more.
|
|
37
|
+
* Value: 641.
|
|
38
|
+
*/
|
|
39
|
+
Tablet: number;
|
|
40
|
+
/**
|
|
41
|
+
* Use to constrain screen sizes that are 1920 wide or less.
|
|
42
|
+
* Value: 961.
|
|
43
|
+
*/
|
|
44
|
+
Desktop: number;
|
|
45
|
+
/**
|
|
46
|
+
* Use to constrain screen sizes that are 1921px wide or more.
|
|
47
|
+
* Value: 1921.
|
|
48
|
+
*/
|
|
49
|
+
Widescreen: number;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
var a=Object.defineProperty;var n=Object.getOwnPropertyDescriptor;var b=Object.getOwnPropertyNames;var c=Object.prototype.hasOwnProperty;var i=(t,e)=>{for(var s in e)a(t,s,{get:e[s],enumerable:!0})},p=(t,e,s,l)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of b(e))!c.call(t,o)&&o!==s&&a(t,o,{get:()=>e[o],enumerable:!(l=n(e,o))||l.enumerable});return t};var M=t=>p(a({},"__esModule",{value:!0}),t);var x={};i(x,{default:()=>r});module.exports=M(x);/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/const d={Mobile:640,Tablet:960,Desktop:1920},k={Tablet:641,Desktop:961,Widescreen:1921};var r={Max:d,Min:k};
|