@dynatrace/strato-design-tokens 0.18.0 → 0.18.3
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.esm.js +16 -0
- package/breakpoints-js/index.esm.js.map +7 -0
- package/breakpoints-js/index.js +15 -0
- package/index.esm.js +1 -1
- package/index.esm.js.map +2 -2
- package/index.js +1 -1
- package/package.json +40 -33
|
@@ -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,16 @@
|
|
|
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
|
+
*/const e={Mobile:640,Tablet:960,Desktop:1920},t={Tablet:641,Desktop:961,Widescreen:1921};var o={Max:e,Min:t};export{o as default};
|
|
16
|
+
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../generated/breakpoints-js/index.ts"],
|
|
4
|
+
"sourcesContent": ["/**\n * @license\n * Copyright 2023 Dynatrace LLC\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * Generated file, do not edit directly!\n */\n\n/** Breakpoints are used to adjust the layout and appearance of elements in the interface based on different screen sizes. */\n\nconst Max = {\n /**\n * Use to constrain screen sizes that are 640px wide or less.\n * Value: 640.\n */\n Mobile: 640,\n /**\n * Use to constrain screen sizes that are 641px wide or more.\n * Value: 960.\n */\n Tablet: 960,\n /**\n * Use to constrain screen sizes that are 960px wide or less.\n * Value: 1920.\n */\n Desktop: 1920,\n};\nconst Min = {\n /**\n * Use to constrain screen sizes that are 961px wide or more.\n * Value: 641.\n */\n Tablet: 641,\n /**\n * Use to constrain screen sizes that are 1920 wide or less.\n * Value: 961.\n */\n Desktop: 961,\n /**\n * Use to constrain screen sizes that are 1921px wide or more.\n * Value: 1921.\n */\n Widescreen: 1921,\n};\nexport default {\n Max,\n Min,\n};\n"],
|
|
5
|
+
"mappings": "AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,GAsBA,MAAMA,EAAM,CAKV,OAAQ,IAKR,OAAQ,IAKR,QAAS,IACX,EACMC,EAAM,CAKV,OAAQ,IAKR,QAAS,IAKT,WAAY,IACd,EACA,IAAOC,EAAQ,CACb,IAAAF,EACA,IAAAC,CACF",
|
|
6
|
+
"names": ["Max", "Min", "breakpoints_js_default"]
|
|
7
|
+
}
|
|
@@ -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};
|
package/index.esm.js
CHANGED
|
@@ -12,5 +12,5 @@
|
|
|
12
12
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
|
-
*/import o from"@dynatrace/strato-design-tokens/animations";import r from"@dynatrace/strato-design-tokens/animations-js";import m from"@dynatrace/strato-design-tokens/borders";import i from"@dynatrace/strato-design-tokens/box-shadows";import p from"@dynatrace/strato-design-tokens/breakpoints";import t from"@dynatrace/strato-design-tokens/colors";import s from"@dynatrace/strato-design-tokens/easings";import f from"@dynatrace/strato-design-tokens/easings-js";import a from"@dynatrace/strato-design-tokens/elevations";import n from"@dynatrace/strato-design-tokens/spacings";import e from"@dynatrace/strato-design-tokens/timings";import g from"@dynatrace/strato-design-tokens/timings-js";import l from"@dynatrace/strato-design-tokens/typography";import B from"@dynatrace/strato-design-tokens/variables";import
|
|
15
|
+
*/import o from"@dynatrace/strato-design-tokens/animations";import r from"@dynatrace/strato-design-tokens/animations-js";import m from"@dynatrace/strato-design-tokens/borders";import i from"@dynatrace/strato-design-tokens/box-shadows";import p from"@dynatrace/strato-design-tokens/breakpoints";import t from"@dynatrace/strato-design-tokens/colors";import s from"@dynatrace/strato-design-tokens/easings";import f from"@dynatrace/strato-design-tokens/easings-js";import a from"@dynatrace/strato-design-tokens/elevations";import n from"@dynatrace/strato-design-tokens/spacings";import e from"@dynatrace/strato-design-tokens/timings";import g from"@dynatrace/strato-design-tokens/timings-js";import l from"@dynatrace/strato-design-tokens/typography";import B from"@dynatrace/strato-design-tokens/variables";import J from"@dynatrace/strato-design-tokens/variables-dark";export{o as Animations,r as AnimationsJs,m as Borders,i as BoxShadows,p as Breakpoints,t as Colors,s as Easings,f as EasingsJs,a as Elevations,n as Spacings,e as Timings,g as TimingsJs,l as Typography,B as Variables,J as VariablesDark};
|
|
16
16
|
//# sourceMappingURL=index.esm.js.map
|
package/index.esm.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../generated/index.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * @license\n * Copyright 2023 Dynatrace LLC\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport Animations from '@dynatrace/strato-design-tokens/animations';\nimport AnimationsJs from '@dynatrace/strato-design-tokens/animations-js';\nimport Borders from '@dynatrace/strato-design-tokens/borders';\nimport BoxShadows from '@dynatrace/strato-design-tokens/box-shadows';\nimport Breakpoints from '@dynatrace/strato-design-tokens/breakpoints';\nimport Colors from '@dynatrace/strato-design-tokens/colors';\nimport Easings from '@dynatrace/strato-design-tokens/easings';\nimport EasingsJs from '@dynatrace/strato-design-tokens/easings-js';\nimport Elevations from '@dynatrace/strato-design-tokens/elevations';\nimport Spacings from '@dynatrace/strato-design-tokens/spacings';\nimport Timings from '@dynatrace/strato-design-tokens/timings';\nimport TimingsJs from '@dynatrace/strato-design-tokens/timings-js';\nimport Typography from '@dynatrace/strato-design-tokens/typography';\nimport Variables from '@dynatrace/strato-design-tokens/variables';\nimport VariablesDark from '@dynatrace/strato-design-tokens/variables-dark';\n\nexport {\n Animations,\n AnimationsJs,\n Borders,\n BoxShadows,\n Breakpoints,\n Colors,\n Easings,\n EasingsJs,\n Elevations,\n Spacings,\n Timings,\n TimingsJs,\n Typography,\n Variables,\n VariablesDark,\n};\n"],
|
|
5
|
-
"mappings": "AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,GAgBA,OAAOA,MAAgB,6CACvB,OAAOC,MAAkB,gDACzB,OAAOC,MAAa,0CACpB,OAAOC,MAAgB,8CACvB,OAAOC,MAAiB,
|
|
4
|
+
"sourcesContent": ["/**\n * @license\n * Copyright 2023 Dynatrace LLC\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport Animations from '@dynatrace/strato-design-tokens/animations';\nimport AnimationsJs from '@dynatrace/strato-design-tokens/animations-js';\nimport Borders from '@dynatrace/strato-design-tokens/borders';\nimport BoxShadows from '@dynatrace/strato-design-tokens/box-shadows';\nimport Breakpoints from '@dynatrace/strato-design-tokens/breakpoints';\nimport BreakpointsJS from '@dynatrace/strato-design-tokens/breakpoints-js';\nimport Colors from '@dynatrace/strato-design-tokens/colors';\nimport Easings from '@dynatrace/strato-design-tokens/easings';\nimport EasingsJs from '@dynatrace/strato-design-tokens/easings-js';\nimport Elevations from '@dynatrace/strato-design-tokens/elevations';\nimport Spacings from '@dynatrace/strato-design-tokens/spacings';\nimport Timings from '@dynatrace/strato-design-tokens/timings';\nimport TimingsJs from '@dynatrace/strato-design-tokens/timings-js';\nimport Typography from '@dynatrace/strato-design-tokens/typography';\nimport Variables from '@dynatrace/strato-design-tokens/variables';\nimport VariablesDark from '@dynatrace/strato-design-tokens/variables-dark';\n\nexport {\n Animations,\n AnimationsJs,\n Borders,\n BoxShadows,\n Breakpoints,\n Colors,\n Easings,\n EasingsJs,\n Elevations,\n Spacings,\n Timings,\n TimingsJs,\n Typography,\n Variables,\n VariablesDark,\n};\n"],
|
|
5
|
+
"mappings": "AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,GAgBA,OAAOA,MAAgB,6CACvB,OAAOC,MAAkB,gDACzB,OAAOC,MAAa,0CACpB,OAAOC,MAAgB,8CACvB,OAAOC,MAAiB,8CAExB,OAAOC,MAAY,yCACnB,OAAOC,MAAa,0CACpB,OAAOC,MAAe,6CACtB,OAAOC,MAAgB,6CACvB,OAAOC,MAAc,2CACrB,OAAOC,MAAa,0CACpB,OAAOC,MAAe,6CACtB,OAAOC,MAAgB,6CACvB,OAAOC,MAAe,4CACtB,OAAOC,MAAmB",
|
|
6
6
|
"names": ["Animations", "AnimationsJs", "Borders", "BoxShadows", "Breakpoints", "Colors", "Easings", "EasingsJs", "Elevations", "Spacings", "Timings", "TimingsJs", "Typography", "Variables", "VariablesDark"]
|
|
7
7
|
}
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var
|
|
1
|
+
var y=Object.create;var t=Object.defineProperty;var A=Object.getOwnPropertyDescriptor;var V=Object.getOwnPropertyNames;var c=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var w=(r,m)=>{for(var i in m)t(r,i,{get:m[i],enumerable:!0})},x=(r,m,i,h)=>{if(m&&typeof m=="object"||typeof m=="function")for(let p of V(m))!v.call(r,p)&&p!==i&&t(r,p,{get:()=>m[p],enumerable:!(h=A(m,p))||h.enumerable});return r};var o=(r,m,i)=>(i=r!=null?y(c(r)):{},x(m||!r||!r.__esModule?t(i,"default",{value:r,enumerable:!0}):i,r)),C=r=>x(t({},"__esModule",{value:!0}),r);var D={};w(D,{Animations:()=>s.default,AnimationsJs:()=>f.default,Borders:()=>a.default,BoxShadows:()=>n.default,Breakpoints:()=>e.default,Colors:()=>g.default,Easings:()=>l.default,EasingsJs:()=>B.default,Elevations:()=>J.default,Spacings:()=>k.default,Timings:()=>E.default,TimingsJs:()=>S.default,Typography:()=>T.default,Variables:()=>b.default,VariablesDark:()=>d.default});module.exports=C(D);var s=o(require("@dynatrace/strato-design-tokens/animations")),f=o(require("@dynatrace/strato-design-tokens/animations-js")),a=o(require("@dynatrace/strato-design-tokens/borders")),n=o(require("@dynatrace/strato-design-tokens/box-shadows")),e=o(require("@dynatrace/strato-design-tokens/breakpoints")),g=o(require("@dynatrace/strato-design-tokens/colors")),l=o(require("@dynatrace/strato-design-tokens/easings")),B=o(require("@dynatrace/strato-design-tokens/easings-js")),J=o(require("@dynatrace/strato-design-tokens/elevations")),k=o(require("@dynatrace/strato-design-tokens/spacings")),E=o(require("@dynatrace/strato-design-tokens/timings")),S=o(require("@dynatrace/strato-design-tokens/timings-js")),T=o(require("@dynatrace/strato-design-tokens/typography")),b=o(require("@dynatrace/strato-design-tokens/variables")),d=o(require("@dynatrace/strato-design-tokens/variables-dark"));/**
|
|
2
2
|
* @license
|
|
3
3
|
* Copyright 2023 Dynatrace LLC
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
package/package.json
CHANGED
|
@@ -1,121 +1,128 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynatrace/strato-design-tokens",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.18.
|
|
4
|
+
"version": "0.18.3",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"module": "./index.esm.js",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./index.d.ts",
|
|
10
|
+
"require": "./index.js",
|
|
10
11
|
"browser": "./index.esm.js",
|
|
11
12
|
"module": "./index.esm.js",
|
|
12
|
-
"import": "./index.esm.js"
|
|
13
|
-
"require": "./index.js"
|
|
13
|
+
"import": "./index.esm.js"
|
|
14
14
|
},
|
|
15
15
|
"./animations": {
|
|
16
16
|
"types": "./animations/index.d.ts",
|
|
17
|
+
"require": "./animations/index.js",
|
|
17
18
|
"browser": "./animations/index.esm.js",
|
|
18
19
|
"module": "./animations/index.esm.js",
|
|
19
|
-
"import": "./animations/index.esm.js"
|
|
20
|
-
"require": "./animations/index.js"
|
|
20
|
+
"import": "./animations/index.esm.js"
|
|
21
21
|
},
|
|
22
22
|
"./animations-js": {
|
|
23
23
|
"types": "./animations-js/index.d.ts",
|
|
24
|
+
"require": "./animations-js/index.js",
|
|
24
25
|
"browser": "./animations-js/index.esm.js",
|
|
25
26
|
"module": "./animations-js/index.esm.js",
|
|
26
|
-
"import": "./animations-js/index.esm.js"
|
|
27
|
-
"require": "./animations-js/index.js"
|
|
27
|
+
"import": "./animations-js/index.esm.js"
|
|
28
28
|
},
|
|
29
29
|
"./borders": {
|
|
30
30
|
"types": "./borders/index.d.ts",
|
|
31
|
+
"require": "./borders/index.js",
|
|
31
32
|
"browser": "./borders/index.esm.js",
|
|
32
33
|
"module": "./borders/index.esm.js",
|
|
33
|
-
"import": "./borders/index.esm.js"
|
|
34
|
-
"require": "./borders/index.js"
|
|
34
|
+
"import": "./borders/index.esm.js"
|
|
35
35
|
},
|
|
36
36
|
"./box-shadows": {
|
|
37
37
|
"types": "./box-shadows/index.d.ts",
|
|
38
|
+
"require": "./box-shadows/index.js",
|
|
38
39
|
"browser": "./box-shadows/index.esm.js",
|
|
39
40
|
"module": "./box-shadows/index.esm.js",
|
|
40
|
-
"import": "./box-shadows/index.esm.js"
|
|
41
|
-
"require": "./box-shadows/index.js"
|
|
41
|
+
"import": "./box-shadows/index.esm.js"
|
|
42
42
|
},
|
|
43
43
|
"./breakpoints": {
|
|
44
44
|
"types": "./breakpoints/index.d.ts",
|
|
45
|
+
"require": "./breakpoints/index.js",
|
|
45
46
|
"browser": "./breakpoints/index.esm.js",
|
|
46
47
|
"module": "./breakpoints/index.esm.js",
|
|
47
|
-
"import": "./breakpoints/index.esm.js"
|
|
48
|
-
|
|
48
|
+
"import": "./breakpoints/index.esm.js"
|
|
49
|
+
},
|
|
50
|
+
"./breakpoints-js": {
|
|
51
|
+
"types": "./breakpoints-js/index.d.ts",
|
|
52
|
+
"require": "./breakpoints-js/index.js",
|
|
53
|
+
"browser": "./breakpoints-js/index.esm.js",
|
|
54
|
+
"module": "./breakpoints-js/index.esm.js",
|
|
55
|
+
"import": "./breakpoints-js/index.esm.js"
|
|
49
56
|
},
|
|
50
57
|
"./colors": {
|
|
51
58
|
"types": "./colors/index.d.ts",
|
|
59
|
+
"require": "./colors/index.js",
|
|
52
60
|
"browser": "./colors/index.esm.js",
|
|
53
61
|
"module": "./colors/index.esm.js",
|
|
54
|
-
"import": "./colors/index.esm.js"
|
|
55
|
-
"require": "./colors/index.js"
|
|
62
|
+
"import": "./colors/index.esm.js"
|
|
56
63
|
},
|
|
57
64
|
"./easings": {
|
|
58
65
|
"types": "./easings/index.d.ts",
|
|
66
|
+
"require": "./easings/index.js",
|
|
59
67
|
"browser": "./easings/index.esm.js",
|
|
60
68
|
"module": "./easings/index.esm.js",
|
|
61
|
-
"import": "./easings/index.esm.js"
|
|
62
|
-
"require": "./easings/index.js"
|
|
69
|
+
"import": "./easings/index.esm.js"
|
|
63
70
|
},
|
|
64
71
|
"./easings-js": {
|
|
65
72
|
"types": "./easings-js/index.d.ts",
|
|
73
|
+
"require": "./easings-js/index.js",
|
|
66
74
|
"browser": "./easings-js/index.esm.js",
|
|
67
75
|
"module": "./easings-js/index.esm.js",
|
|
68
|
-
"import": "./easings-js/index.esm.js"
|
|
69
|
-
"require": "./easings-js/index.js"
|
|
76
|
+
"import": "./easings-js/index.esm.js"
|
|
70
77
|
},
|
|
71
78
|
"./elevations": {
|
|
72
79
|
"types": "./elevations/index.d.ts",
|
|
80
|
+
"require": "./elevations/index.js",
|
|
73
81
|
"browser": "./elevations/index.esm.js",
|
|
74
82
|
"module": "./elevations/index.esm.js",
|
|
75
|
-
"import": "./elevations/index.esm.js"
|
|
76
|
-
"require": "./elevations/index.js"
|
|
83
|
+
"import": "./elevations/index.esm.js"
|
|
77
84
|
},
|
|
78
85
|
"./spacings": {
|
|
79
86
|
"types": "./spacings/index.d.ts",
|
|
87
|
+
"require": "./spacings/index.js",
|
|
80
88
|
"browser": "./spacings/index.esm.js",
|
|
81
89
|
"module": "./spacings/index.esm.js",
|
|
82
|
-
"import": "./spacings/index.esm.js"
|
|
83
|
-
"require": "./spacings/index.js"
|
|
90
|
+
"import": "./spacings/index.esm.js"
|
|
84
91
|
},
|
|
85
92
|
"./timings": {
|
|
86
93
|
"types": "./timings/index.d.ts",
|
|
94
|
+
"require": "./timings/index.js",
|
|
87
95
|
"browser": "./timings/index.esm.js",
|
|
88
96
|
"module": "./timings/index.esm.js",
|
|
89
|
-
"import": "./timings/index.esm.js"
|
|
90
|
-
"require": "./timings/index.js"
|
|
97
|
+
"import": "./timings/index.esm.js"
|
|
91
98
|
},
|
|
92
99
|
"./timings-js": {
|
|
93
100
|
"types": "./timings-js/index.d.ts",
|
|
101
|
+
"require": "./timings-js/index.js",
|
|
94
102
|
"browser": "./timings-js/index.esm.js",
|
|
95
103
|
"module": "./timings-js/index.esm.js",
|
|
96
|
-
"import": "./timings-js/index.esm.js"
|
|
97
|
-
"require": "./timings-js/index.js"
|
|
104
|
+
"import": "./timings-js/index.esm.js"
|
|
98
105
|
},
|
|
99
106
|
"./typography": {
|
|
100
107
|
"types": "./typography/index.d.ts",
|
|
108
|
+
"require": "./typography/index.js",
|
|
101
109
|
"browser": "./typography/index.esm.js",
|
|
102
110
|
"module": "./typography/index.esm.js",
|
|
103
|
-
"import": "./typography/index.esm.js"
|
|
104
|
-
"require": "./typography/index.js"
|
|
111
|
+
"import": "./typography/index.esm.js"
|
|
105
112
|
},
|
|
106
113
|
"./variables": {
|
|
107
114
|
"types": "./variables/index.d.ts",
|
|
115
|
+
"require": "./variables/index.js",
|
|
108
116
|
"browser": "./variables/index.esm.js",
|
|
109
117
|
"module": "./variables/index.esm.js",
|
|
110
|
-
"import": "./variables/index.esm.js"
|
|
111
|
-
"require": "./variables/index.js"
|
|
118
|
+
"import": "./variables/index.esm.js"
|
|
112
119
|
},
|
|
113
120
|
"./variables-dark": {
|
|
114
121
|
"types": "./variables-dark/index.d.ts",
|
|
122
|
+
"require": "./variables-dark/index.js",
|
|
115
123
|
"browser": "./variables-dark/index.esm.js",
|
|
116
124
|
"module": "./variables-dark/index.esm.js",
|
|
117
|
-
"import": "./variables-dark/index.esm.js"
|
|
118
|
-
"require": "./variables-dark/index.js"
|
|
125
|
+
"import": "./variables-dark/index.esm.js"
|
|
119
126
|
}
|
|
120
127
|
},
|
|
121
128
|
"types": "./index.d.ts",
|