@neo4j-ndl/base 3.4.0 → 3.4.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/lib/cjs/tokens/js/storybook-design-token.js +118 -17
- package/lib/cjs/tokens/js/storybook-design-token.js.map +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +27 -6
- package/lib/cjs/tokens/js/tokens-esm.js.map +1 -1
- package/lib/cjs/tokens/js/tokens.js +27 -6
- package/lib/cjs/tokens/js/tokens.js.map +1 -1
- package/lib/esm/tokens/js/storybook-design-token.js +118 -17
- package/lib/esm/tokens/js/storybook-design-token.js.map +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +27 -6
- package/lib/esm/tokens/js/tokens-esm.js.map +1 -1
- package/lib/esm/tokens/js/tokens.js +27 -6
- package/lib/esm/tokens/js/tokens.js.map +1 -1
- package/lib/neo4j-ds-styles.css +34 -14
- package/lib/tokens/css/tokens.css +23 -12
- package/lib/tokens/js/tokens-raw.js +289 -180
- package/lib/tokens/js/tokens.js +27 -6
- package/lib/tokens/scss/tokens.scss +23 -12
- package/lib/types/tokens/js/storybook-design-token.d.ts +7 -2
- package/lib/types/tokens/js/tokens-esm.d.ts +36 -6
- package/lib/types/tokens/js/tokens.d.ts +36 -6
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Fri, 09 May 2025 07:25:40 GMT
|
|
4
4
|
|
|
5
5
|
$transitions-values-properties-default: all;
|
|
6
6
|
$transitions-values-duration-quick: 100ms;
|
|
@@ -21,17 +21,28 @@ $border-radius-3xl: 16px;
|
|
|
21
21
|
$border-radius-4xl: 18px;
|
|
22
22
|
$border-radius-5xl: 20px;
|
|
23
23
|
$border-radius-full: 9999px;
|
|
24
|
-
$breakpoint-next-xs:
|
|
25
|
-
$breakpoint-next-
|
|
26
|
-
$breakpoint-next-
|
|
27
|
-
$breakpoint-next-
|
|
28
|
-
$breakpoint-next-
|
|
29
|
-
$breakpoint-next-
|
|
30
|
-
$breakpoint-next-
|
|
31
|
-
$breakpoint-next-
|
|
32
|
-
$breakpoint-next-
|
|
33
|
-
$breakpoint-next-
|
|
34
|
-
$breakpoint-next-
|
|
24
|
+
$breakpoint-next-one-xs-min: 320px;
|
|
25
|
+
$breakpoint-next-one-xs-med: 360px;
|
|
26
|
+
$breakpoint-next-one-xs-max: 375px;
|
|
27
|
+
$breakpoint-next-one-sm-min: 512px;
|
|
28
|
+
$breakpoint-next-one-sm-med: 768px;
|
|
29
|
+
$breakpoint-next-one-sm-max: 864px;
|
|
30
|
+
$breakpoint-next-one-md-min: 1024px;
|
|
31
|
+
$breakpoint-next-one-md-med: 1280px;
|
|
32
|
+
$breakpoint-next-one-md-max: 1440px;
|
|
33
|
+
$breakpoint-next-one-lg-min: 1680px;
|
|
34
|
+
$breakpoint-next-one-lg-max: 1920px;
|
|
35
|
+
$breakpoint-next-two-5xs: 320px;
|
|
36
|
+
$breakpoint-next-two-4xs: 360px;
|
|
37
|
+
$breakpoint-next-two-3xs: 375px;
|
|
38
|
+
$breakpoint-next-two-2xs: 512px;
|
|
39
|
+
$breakpoint-next-two-xs: 768px;
|
|
40
|
+
$breakpoint-next-two-sm: 864px;
|
|
41
|
+
$breakpoint-next-two-md: 1024px;
|
|
42
|
+
$breakpoint-next-two-lg: 1280px;
|
|
43
|
+
$breakpoint-next-two-xl: 1440px;
|
|
44
|
+
$breakpoint-next-two-2xl: 1680px;
|
|
45
|
+
$breakpoint-next-two-3xl: 1920px;
|
|
35
46
|
$breakpoints-xs: 450px; // Extra small screen / phone, only one not included with Tailwind CSS
|
|
36
47
|
$breakpoints-sm: 640px; // Check here: https://tailwindcss.com/docs/responsive-design
|
|
37
48
|
$breakpoints-md: 768px;
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
23
|
* Do not edit directly
|
|
24
|
-
* Generated on
|
|
24
|
+
* Generated on Fri, 09 May 2025 07:25:40 GMT
|
|
25
25
|
*/
|
|
26
26
|
export const tokens: {
|
|
27
27
|
transitions: {
|
|
@@ -33,7 +33,12 @@ export const tokens: {
|
|
|
33
33
|
value: string;
|
|
34
34
|
description: string;
|
|
35
35
|
}[];
|
|
36
|
-
|
|
36
|
+
breakpointNextOne: {
|
|
37
|
+
path: string[];
|
|
38
|
+
value: string;
|
|
39
|
+
description: string;
|
|
40
|
+
}[];
|
|
41
|
+
breakpointNextTwo: {
|
|
37
42
|
path: string[];
|
|
38
43
|
value: string;
|
|
39
44
|
description: string;
|
|
@@ -57,15 +57,44 @@ export namespace tokens {
|
|
|
57
57
|
"5xl": string;
|
|
58
58
|
full: string;
|
|
59
59
|
};
|
|
60
|
-
|
|
61
|
-
xs
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
60
|
+
namespace breakpointNextOne {
|
|
61
|
+
namespace xs {
|
|
62
|
+
let min: string;
|
|
63
|
+
let med: string;
|
|
64
|
+
let max: string;
|
|
65
|
+
}
|
|
66
|
+
namespace sm {
|
|
67
|
+
let min_1: string;
|
|
68
|
+
export { min_1 as min };
|
|
69
|
+
let med_1: string;
|
|
70
|
+
export { med_1 as med };
|
|
71
|
+
let max_1: string;
|
|
72
|
+
export { max_1 as max };
|
|
73
|
+
}
|
|
74
|
+
namespace md {
|
|
75
|
+
let min_2: string;
|
|
76
|
+
export { min_2 as min };
|
|
77
|
+
let med_2: string;
|
|
78
|
+
export { med_2 as med };
|
|
79
|
+
let max_2: string;
|
|
80
|
+
export { max_2 as max };
|
|
81
|
+
}
|
|
82
|
+
namespace lg {
|
|
83
|
+
let min_3: string;
|
|
84
|
+
export { min_3 as min };
|
|
85
|
+
let max_3: string;
|
|
86
|
+
export { max_3 as max };
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
let breakpointNextTwo: {
|
|
65
90
|
"5xs": string;
|
|
66
91
|
"4xs": string;
|
|
67
92
|
"3xs": string;
|
|
68
93
|
"2xs": string;
|
|
94
|
+
xs: string;
|
|
95
|
+
sm: string;
|
|
96
|
+
md: string;
|
|
97
|
+
lg: string;
|
|
69
98
|
xl: string;
|
|
70
99
|
"2xl": string;
|
|
71
100
|
"3xl": string;
|
|
@@ -310,7 +339,8 @@ export namespace tokens {
|
|
|
310
339
|
let light_1: string;
|
|
311
340
|
export { light_1 as light };
|
|
312
341
|
export let heavy: string;
|
|
313
|
-
|
|
342
|
+
let max_4: string;
|
|
343
|
+
export { max_4 as max };
|
|
314
344
|
let full_1: string;
|
|
315
345
|
export { full_1 as full };
|
|
316
346
|
}
|
|
@@ -56,15 +56,44 @@ export let borderRadius: {
|
|
|
56
56
|
"5xl": string;
|
|
57
57
|
full: string;
|
|
58
58
|
};
|
|
59
|
-
export
|
|
60
|
-
xs
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
59
|
+
export namespace breakpointNextOne {
|
|
60
|
+
namespace xs {
|
|
61
|
+
let min: string;
|
|
62
|
+
let med: string;
|
|
63
|
+
let max: string;
|
|
64
|
+
}
|
|
65
|
+
namespace sm {
|
|
66
|
+
let min_1: string;
|
|
67
|
+
export { min_1 as min };
|
|
68
|
+
let med_1: string;
|
|
69
|
+
export { med_1 as med };
|
|
70
|
+
let max_1: string;
|
|
71
|
+
export { max_1 as max };
|
|
72
|
+
}
|
|
73
|
+
namespace md {
|
|
74
|
+
let min_2: string;
|
|
75
|
+
export { min_2 as min };
|
|
76
|
+
let med_2: string;
|
|
77
|
+
export { med_2 as med };
|
|
78
|
+
let max_2: string;
|
|
79
|
+
export { max_2 as max };
|
|
80
|
+
}
|
|
81
|
+
namespace lg {
|
|
82
|
+
let min_3: string;
|
|
83
|
+
export { min_3 as min };
|
|
84
|
+
let max_3: string;
|
|
85
|
+
export { max_3 as max };
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
export let breakpointNextTwo: {
|
|
64
89
|
"5xs": string;
|
|
65
90
|
"4xs": string;
|
|
66
91
|
"3xs": string;
|
|
67
92
|
"2xs": string;
|
|
93
|
+
xs: string;
|
|
94
|
+
sm: string;
|
|
95
|
+
md: string;
|
|
96
|
+
lg: string;
|
|
68
97
|
xl: string;
|
|
69
98
|
"2xl": string;
|
|
70
99
|
"3xl": string;
|
|
@@ -309,7 +338,8 @@ export namespace contentMaxWidthNext {
|
|
|
309
338
|
let light_1: string;
|
|
310
339
|
export { light_1 as light };
|
|
311
340
|
export let heavy: string;
|
|
312
|
-
|
|
341
|
+
let max_4: string;
|
|
342
|
+
export { max_4 as max };
|
|
313
343
|
let full_1: string;
|
|
314
344
|
export { full_1 as full };
|
|
315
345
|
}
|