@hopper-ui/styled-system 1.2.0 → 2.0.1
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/CHANGELOG.md +109 -0
- package/dist/StyledSystemProvider.css +34 -34
- package/dist/StyledSystemProvider.d.ts +3 -0
- package/dist/StyledSystemProvider.js +17 -17
- package/dist/chunk-2UOTJGT6.js +12 -0
- package/dist/{chunk-GFXIV6J4.js → chunk-3KPNXG7H.js} +23 -21
- package/dist/{chunk-JKXZGQAL.js → chunk-4E7VQIC5.js} +249 -183
- package/dist/{chunk-KLNF34G6.js → chunk-5U5IRAPA.js} +1 -1
- package/dist/{chunk-B6ZBFYWJ.js → chunk-6IPAN22Z.js} +3 -3
- package/dist/{chunk-EJR6CH3T.js → chunk-6KT6K6NI.js} +1 -1
- package/dist/{chunk-ZDENFQ6H.js → chunk-BUQLB5H6.js} +2 -2
- package/dist/{chunk-45MYTH4M.js → chunk-CFIMNXX5.js} +2 -2
- package/dist/{chunk-KKVEOD5L.js → chunk-FAICHNEU.js} +220 -154
- package/dist/{chunk-MCUHAIA4.js → chunk-GXUFWEP5.js} +2 -2
- package/dist/{chunk-RKTVEOXM.js → chunk-JSOM3YJJ.js} +6 -6
- package/dist/{chunk-LCW3QCQQ.js → chunk-KOWHTPQC.js} +2 -2
- package/dist/{chunk-TSYETPJT.js → chunk-KQGCMT5E.js} +5 -5
- package/dist/{chunk-E2EGUGKS.js → chunk-LKOZVSXD.js} +289 -221
- package/dist/{chunk-DRFY5W7M.js → chunk-NJIDLCB7.js} +1 -1
- package/dist/{chunk-J2UW6IZ5.js → chunk-VTGIKL3T.js} +2 -2
- package/dist/color-scheme/ColorSchemeContext.js +1 -1
- package/dist/color-scheme/useColorScheme.js +3 -3
- package/dist/color-scheme/useColorSchemeValue.js +1 -1
- package/dist/global-styles/BodyStyleProvider.js +4 -4
- package/dist/html-wrappers/html.css +34 -34
- package/dist/html-wrappers/html.js +6 -6
- package/dist/html-wrappers/htmlElement.css +34 -34
- package/dist/html-wrappers/htmlElement.js +5 -5
- package/dist/index.css +34 -34
- package/dist/index.js +17 -17
- package/dist/responsive/BreakpointContext.js +1 -1
- package/dist/responsive/BreakpointProvider.d.ts +5 -0
- package/dist/responsive/BreakpointProvider.js +3 -3
- package/dist/responsive/Breakpoints.js +1 -1
- package/dist/responsive/useResponsiveValue.js +1 -1
- package/dist/styledSystemProps.js +1 -1
- package/dist/styledSystemRootCssClass.js +2 -2
- package/dist/tokens/TokenProvider.js +6 -6
- package/dist/tokens/generated/darkSemanticTokens.d.ts +279 -211
- package/dist/tokens/generated/darkSemanticTokens.js +2 -2
- package/dist/tokens/generated/lightSemanticTokens.d.ts +242 -176
- package/dist/tokens/generated/lightSemanticTokens.js +2 -2
- package/dist/tokens/generated/styledSystemToTokenMappings.d.ts +217 -151
- package/dist/tokens/generated/styledSystemToTokenMappings.js +2 -2
- package/dist/tokens/tokenMappings.d.ts +286 -206
- package/dist/tokens/tokenMappings.js +3 -3
- package/dist/tokens/tokens.d.ts +523 -389
- package/dist/tokens/tokens.js +4 -4
- package/dist/useStyledSystem.css +31 -31
- package/dist/useStyledSystem.d.ts +1 -1
- package/dist/useStyledSystem.js +4 -4
- package/dist/utils/assertion.js +1 -1
- package/dist/utils/useInsertStyleElement.js +1 -1
- package/dist/utils/useIsomorphicInsertionEffect.js +1 -1
- package/dist/utils/useIsomorphicLayoutEffect.js +1 -1
- package/dist/utils/useMediaQuery.js +2 -2
- package/dist/utils/useThemeComputedStyle.js +2 -2
- package/package.json +24 -22
- package/dist/chunk-6LX4VMOV.js +0 -26
- package/dist/{chunk-M4X2T3D3.js → chunk-T6JS7L6B.js} +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,114 @@
|
|
|
1
1
|
# @hopper-ui/styled-system
|
|
2
2
|
|
|
3
|
+
## 2.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8ad853b: Retro fitted active color tokens to ease with migrations, these will be deprecated eventually.
|
|
8
|
+
|
|
9
|
+
## 2.0.0
|
|
10
|
+
|
|
11
|
+
### Major Changes
|
|
12
|
+
|
|
13
|
+
- c5c6b30: ## @hopper-ui/tokens
|
|
14
|
+
|
|
15
|
+
**Added**
|
|
16
|
+
|
|
17
|
+
| Token |
|
|
18
|
+
| ------------------------------------- |
|
|
19
|
+
| danger-text-selected |
|
|
20
|
+
| danger-border-selected |
|
|
21
|
+
| danger-icon-selected |
|
|
22
|
+
| danger-icon-weak-hover |
|
|
23
|
+
| danger-icon-weak-press |
|
|
24
|
+
| danger-surface-selected |
|
|
25
|
+
| danger-surface-weak-hover |
|
|
26
|
+
| danger-surface-weak-press |
|
|
27
|
+
| danger-text-weak-hover |
|
|
28
|
+
| danger-text-weak-press |
|
|
29
|
+
| decorative-option5-surface-weak-hover |
|
|
30
|
+
| neutral-surface-weak-selected |
|
|
31
|
+
| neutral-surface-weakest-selected |
|
|
32
|
+
| neutral-border-selected |
|
|
33
|
+
| neutral-icon-selected |
|
|
34
|
+
| neutral-icon-strong-hover |
|
|
35
|
+
| neutral-icon-weak-press |
|
|
36
|
+
| neutral-surface-selected |
|
|
37
|
+
| neutral-text-weak-hover |
|
|
38
|
+
| neutral-text-weak-press |
|
|
39
|
+
| primary-border-selected |
|
|
40
|
+
| primary-icon-selected |
|
|
41
|
+
| primary-surface-selected |
|
|
42
|
+
| primary-surface-strong-selected |
|
|
43
|
+
| primary-surface-weak-hover |
|
|
44
|
+
| primary-surface-weak-press |
|
|
45
|
+
| primary-text-selected |
|
|
46
|
+
| upsell-border-selected |
|
|
47
|
+
| upsell-icon-selected |
|
|
48
|
+
| upsell-icon-hover |
|
|
49
|
+
| upsell-icon-weak-hover |
|
|
50
|
+
| upsell-icon-weak-press |
|
|
51
|
+
| upsell-surface-selected |
|
|
52
|
+
| upsell-surface-weak-hover |
|
|
53
|
+
| upsell-surface-weak-press |
|
|
54
|
+
| upsell-text-selected |
|
|
55
|
+
| upsell-text-weak |
|
|
56
|
+
| upsell-text-weak-hover |
|
|
57
|
+
| upsell-text-weak-press |
|
|
58
|
+
|
|
59
|
+
**Renamed**
|
|
60
|
+
|
|
61
|
+
Use this as a reference to fix all breaking changes.
|
|
62
|
+
|
|
63
|
+
| Old Token name | New Token name |
|
|
64
|
+
| ----------------------------- | ---------------------------- |
|
|
65
|
+
| danger-border-active | danger-border-press |
|
|
66
|
+
| danger-icon-active | danger-icon-press |
|
|
67
|
+
| danger-text-active | danger-text-press |
|
|
68
|
+
| danger-surface-active | danger-surface-press |
|
|
69
|
+
| neutral-border-active | neutral-border-press |
|
|
70
|
+
| neutral-icon-active | neutral-icon-press |
|
|
71
|
+
| neutral-surface-active | neutral-surface-press |
|
|
72
|
+
| neutral-surface-weak-active | neutral-surface-weak-press |
|
|
73
|
+
| neutral-text-active | neutral-text-press |
|
|
74
|
+
| primary-border-active | primary-border-press |
|
|
75
|
+
| primary-icon-active | primary-icon-press |
|
|
76
|
+
| primary-surface-active | primary-surface-press |
|
|
77
|
+
| primary-text-active | primary-text-press |
|
|
78
|
+
| primary-surface-strong-active | primary-surface-strong-press |
|
|
79
|
+
| upsell-border-active | upsell-border-press |
|
|
80
|
+
| upsell-icon-active | upsell-icon-press |
|
|
81
|
+
| upsell-surface-active | upsell-surface-press |
|
|
82
|
+
| upsell-text-active | upsell-text-press |
|
|
83
|
+
|
|
84
|
+
**Updated**
|
|
85
|
+
|
|
86
|
+
| Token |
|
|
87
|
+
| ---------------------------- |
|
|
88
|
+
| danger-surface-hover |
|
|
89
|
+
| danger-surface-strong |
|
|
90
|
+
| danger-surface-strong-hover |
|
|
91
|
+
| danger-text-weak |
|
|
92
|
+
| status-progress-text |
|
|
93
|
+
| status-progress-icon |
|
|
94
|
+
| primary-surface-strong-hover |
|
|
95
|
+
| primary-text |
|
|
96
|
+
| primary-surface-hover |
|
|
97
|
+
| upsell-surface-hover |
|
|
98
|
+
| upsell-surface-weak |
|
|
99
|
+
| upsell-text |
|
|
100
|
+
| upsell-icon |
|
|
101
|
+
| upsell-text-hover |
|
|
102
|
+
|
|
103
|
+
## @hopper-ui/components
|
|
104
|
+
|
|
105
|
+
- Added a press state to Links
|
|
106
|
+
- Added a press state to Buttons
|
|
107
|
+
- Added a press state to Checkbbox
|
|
108
|
+
- Added a press state to Switch
|
|
109
|
+
- Added a press state to Radio
|
|
110
|
+
- Added numerous tests to test Pressed States of components
|
|
111
|
+
|
|
3
112
|
## 1.2.0
|
|
4
113
|
|
|
5
114
|
### Minor Changes
|
|
@@ -1,132 +1,132 @@
|
|
|
1
1
|
/* css-module:/home/runner/work/wl-hopper/wl-hopper/packages/styled-system/src/UseStyledSystem.module.css/#css-module-data */
|
|
2
|
-
.UseStyledSystem-module__hop-b-
|
|
2
|
+
.UseStyledSystem-module__hop-b-hover___7beCa:hover {
|
|
3
3
|
--hop-b-hover: initial;
|
|
4
4
|
border: var(--hop-b-hover) !important;
|
|
5
5
|
}
|
|
6
|
-
.UseStyledSystem-module__hop-bb-
|
|
6
|
+
.UseStyledSystem-module__hop-bb-hover___sjc-o:hover {
|
|
7
7
|
--hop-bb-hover: initial;
|
|
8
8
|
border-bottom: var(--hop-bb-hover) !important;
|
|
9
9
|
}
|
|
10
|
-
.UseStyledSystem-module__hop-bl-
|
|
10
|
+
.UseStyledSystem-module__hop-bl-hover___kLkuA:hover {
|
|
11
11
|
--hop-bl-hover: initial;
|
|
12
12
|
border-left: var(--hop-bl-hover) !important;
|
|
13
13
|
}
|
|
14
|
-
.UseStyledSystem-module__hop-br-
|
|
14
|
+
.UseStyledSystem-module__hop-br-hover___K-EIQ:hover {
|
|
15
15
|
--hop-br-hover: initial;
|
|
16
16
|
border-right: var(--hop-br-hover) !important;
|
|
17
17
|
}
|
|
18
|
-
.UseStyledSystem-module__hop-bt-
|
|
18
|
+
.UseStyledSystem-module__hop-bt-hover___oRCTK:hover {
|
|
19
19
|
--hop-bt-hover: initial;
|
|
20
20
|
border-top: var(--hop-bt-hover) !important;
|
|
21
21
|
}
|
|
22
|
-
.UseStyledSystem-module__hop-b-
|
|
22
|
+
.UseStyledSystem-module__hop-b-focus___EJlgQ:focus-visible {
|
|
23
23
|
--hop-b-focus: initial;
|
|
24
24
|
border: var(--hop-b-focus) !important;
|
|
25
25
|
}
|
|
26
|
-
.UseStyledSystem-module__hop-bb-
|
|
26
|
+
.UseStyledSystem-module__hop-bb-focus___it6DZ:focus-visible {
|
|
27
27
|
--hop-bb-focus: initial;
|
|
28
28
|
border-bottom: var(--hop-bb-focus) !important;
|
|
29
29
|
}
|
|
30
|
-
.UseStyledSystem-module__hop-bl-
|
|
30
|
+
.UseStyledSystem-module__hop-bl-focus___N5Da-:focus-visible {
|
|
31
31
|
--hop-bl-focus: initial;
|
|
32
32
|
border-left: var(--hop-bl-focus) !important;
|
|
33
33
|
}
|
|
34
|
-
.UseStyledSystem-module__hop-br-
|
|
34
|
+
.UseStyledSystem-module__hop-br-focus___jbce-:focus-visible {
|
|
35
35
|
--hop-br-focus: initial;
|
|
36
36
|
border-right: var(--hop-br-focus) !important;
|
|
37
37
|
}
|
|
38
|
-
.UseStyledSystem-module__hop-bt-
|
|
38
|
+
.UseStyledSystem-module__hop-bt-focus___YZI-l:focus-visible {
|
|
39
39
|
--hop-bt-focus: initial;
|
|
40
40
|
border-top: var(--hop-bt-focus) !important;
|
|
41
41
|
}
|
|
42
|
-
.UseStyledSystem-module__hop-b-
|
|
42
|
+
.UseStyledSystem-module__hop-b-active___E5jrv:active {
|
|
43
43
|
--hop-b-active: initial;
|
|
44
44
|
border: var(--hop-b-active) !important;
|
|
45
45
|
}
|
|
46
|
-
.UseStyledSystem-module__hop-bb-
|
|
46
|
+
.UseStyledSystem-module__hop-bb-active___-nDNr:active {
|
|
47
47
|
--hop-bb-active: initial;
|
|
48
48
|
border-bottom: var(--hop-bb-active) !important;
|
|
49
49
|
}
|
|
50
|
-
.UseStyledSystem-module__hop-bl-
|
|
50
|
+
.UseStyledSystem-module__hop-bl-active___y7kuR:active {
|
|
51
51
|
--hop-bl-active: initial;
|
|
52
52
|
border-left: var(--hop-bl-active) !important;
|
|
53
53
|
}
|
|
54
|
-
.UseStyledSystem-module__hop-br-
|
|
54
|
+
.UseStyledSystem-module__hop-br-active___MWItF:active {
|
|
55
55
|
--hop-br-active: initial;
|
|
56
56
|
border-right: var(--hop-br-active) !important;
|
|
57
57
|
}
|
|
58
|
-
.UseStyledSystem-module__hop-bt-
|
|
58
|
+
.UseStyledSystem-module__hop-bt-active___SpvZl:active {
|
|
59
59
|
--hop-bt-active: initial;
|
|
60
60
|
border-top: var(--hop-bt-active) !important;
|
|
61
61
|
}
|
|
62
|
-
.UseStyledSystem-module__hop-bg-
|
|
62
|
+
.UseStyledSystem-module__hop-bg-hover___NzrYM:hover {
|
|
63
63
|
--hop-bg-hover: initial;
|
|
64
64
|
background-color: var(--hop-bg-hover) !important;
|
|
65
65
|
}
|
|
66
|
-
.UseStyledSystem-module__hop-bg-
|
|
66
|
+
.UseStyledSystem-module__hop-bg-focus___yNcFv:focus-visible {
|
|
67
67
|
--hop-bg-focus: initial;
|
|
68
68
|
background-color: var(--hop-bg-focus) !important;
|
|
69
69
|
}
|
|
70
|
-
.UseStyledSystem-module__hop-bg-
|
|
70
|
+
.UseStyledSystem-module__hop-bg-active___0jxjX:active {
|
|
71
71
|
--hop-bg-active: initial;
|
|
72
72
|
background-color: var(--hop-bg-active) !important;
|
|
73
73
|
}
|
|
74
|
-
.UseStyledSystem-module__hop-bs-
|
|
74
|
+
.UseStyledSystem-module__hop-bs-hover___JyGqG:hover {
|
|
75
75
|
--hop-bs-hover: initial;
|
|
76
76
|
box-shadow: var(--hop-bs-hover) !important;
|
|
77
77
|
}
|
|
78
|
-
.UseStyledSystem-module__hop-bs-
|
|
78
|
+
.UseStyledSystem-module__hop-bs-focus___msxJy:focus-visible {
|
|
79
79
|
--hop-bs-focus: initial;
|
|
80
80
|
box-shadow: var(--hop-bs-focus) !important;
|
|
81
81
|
}
|
|
82
|
-
.UseStyledSystem-module__hop-bs-
|
|
82
|
+
.UseStyledSystem-module__hop-bs-active___qBFjv:active {
|
|
83
83
|
--hop-bs-active: initial;
|
|
84
84
|
box-shadow: var(--hop-bs-active) !important;
|
|
85
85
|
}
|
|
86
|
-
.UseStyledSystem-module__hop-c-
|
|
86
|
+
.UseStyledSystem-module__hop-c-hover___Y8hIV:hover {
|
|
87
87
|
--hop-c-hover: initial;
|
|
88
88
|
color: var(--hop-c-hover) !important;
|
|
89
89
|
}
|
|
90
|
-
.UseStyledSystem-module__hop-c-
|
|
90
|
+
.UseStyledSystem-module__hop-c-focus___FafgY:focus-visible {
|
|
91
91
|
--hop-c-focus: initial;
|
|
92
92
|
color: var(--hop-c-focus) !important;
|
|
93
93
|
}
|
|
94
|
-
.UseStyledSystem-module__hop-c-
|
|
94
|
+
.UseStyledSystem-module__hop-c-active___A2lPI:active {
|
|
95
95
|
--hop-c-active: initial;
|
|
96
96
|
color: var(--hop-c-active) !important;
|
|
97
97
|
}
|
|
98
|
-
.UseStyledSystem-module__hop-cs-
|
|
98
|
+
.UseStyledSystem-module__hop-cs-hover___oMtJX:hover {
|
|
99
99
|
--hop-cs-hover: initial;
|
|
100
100
|
cursor: var(--hop-cs-hover) !important;
|
|
101
101
|
}
|
|
102
|
-
.UseStyledSystem-module__hop-f-
|
|
102
|
+
.UseStyledSystem-module__hop-f-hover___oRByO:hover {
|
|
103
103
|
--hop-f-hover: initial;
|
|
104
104
|
fill: var(--hop-f-hover) !important;
|
|
105
105
|
}
|
|
106
|
-
.UseStyledSystem-module__hop-f-
|
|
106
|
+
.UseStyledSystem-module__hop-f-focus___JrRbQ:focus-visible {
|
|
107
107
|
--hop-f-focus: initial;
|
|
108
108
|
fill: var(--hop-f-focus) !important;
|
|
109
109
|
}
|
|
110
|
-
.UseStyledSystem-module__hop-o-
|
|
110
|
+
.UseStyledSystem-module__hop-o-hover___s67Ok:hover {
|
|
111
111
|
--hop-o-hover: initial;
|
|
112
112
|
opacity: var(--hop-o-hover) !important;
|
|
113
113
|
}
|
|
114
|
-
.UseStyledSystem-module__hop-o-
|
|
114
|
+
.UseStyledSystem-module__hop-o-focus___pd95u:focus-visible {
|
|
115
115
|
--hop-o-focus: initial;
|
|
116
116
|
opacity: var(--hop-o-focus) !important;
|
|
117
117
|
}
|
|
118
|
-
.UseStyledSystem-module__hop-o-
|
|
118
|
+
.UseStyledSystem-module__hop-o-active___HqbZe:active {
|
|
119
119
|
--hop-o-active: initial;
|
|
120
120
|
opacity: var(--hop-o-active) !important;
|
|
121
121
|
}
|
|
122
|
-
.UseStyledSystem-module__hop-ol-
|
|
122
|
+
.UseStyledSystem-module__hop-ol-focus___OajYd:focus-visible {
|
|
123
123
|
--hop-ol-focus: initial;
|
|
124
124
|
color: var(--hop-ol-focus) !important;
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
/* css-module:/home/runner/work/wl-hopper/wl-hopper/packages/styled-system/src/html-wrappers/htmlElement.module.css/#css-module-data */
|
|
128
|
-
:where(.htmlElement-module__hop-
|
|
129
|
-
:where(.htmlElement-module__hop-
|
|
130
|
-
:where(.htmlElement-module__hop-
|
|
128
|
+
:where(.htmlElement-module__hop-HtmlElement___jov6a),
|
|
129
|
+
:where(.htmlElement-module__hop-HtmlElement___jov6a::after),
|
|
130
|
+
:where(.htmlElement-module__hop-HtmlElement___jov6a::before) {
|
|
131
131
|
box-sizing: border-box;
|
|
132
132
|
}
|
|
@@ -21,15 +21,18 @@ interface StyledSystemProviderProps extends BreakpointProviderProps, DivProps {
|
|
|
21
21
|
withBodyStyle?: boolean;
|
|
22
22
|
/**
|
|
23
23
|
* The color scheme to use.
|
|
24
|
+
* @default "light"
|
|
24
25
|
*/
|
|
25
26
|
colorScheme: ColorSchemeOrSystem;
|
|
26
27
|
/**
|
|
27
28
|
* Default color scheme to use when a user preferred color scheme (system) is not available.
|
|
29
|
+
* @default "light"
|
|
28
30
|
*/
|
|
29
31
|
defaultColorScheme?: ColorScheme;
|
|
30
32
|
/**
|
|
31
33
|
* Determines whether token CSS variables should be added to the document's head
|
|
32
34
|
* By default, it is set to `true`, you should not change it unless you want to manage CSS variables via `.css` files
|
|
35
|
+
* @default true
|
|
33
36
|
*/
|
|
34
37
|
withCssVariables?: boolean;
|
|
35
38
|
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
export { GlobalStyledSystemProviderCssSelector, _StyledSystemProvider as StyledSystemProvider } from './chunk-
|
|
2
|
-
import './chunk-
|
|
1
|
+
export { GlobalStyledSystemProviderCssSelector, _StyledSystemProvider as StyledSystemProvider } from './chunk-JSOM3YJJ.js';
|
|
2
|
+
import './chunk-VTGIKL3T.js';
|
|
3
3
|
import './chunk-3YM73BQP.js';
|
|
4
|
-
import './chunk-
|
|
5
|
-
import './chunk-
|
|
6
|
-
import './chunk-
|
|
7
|
-
import './chunk-
|
|
8
|
-
import './chunk-
|
|
9
|
-
import './chunk-
|
|
10
|
-
import './chunk-
|
|
11
|
-
import './chunk-
|
|
4
|
+
import './chunk-6IPAN22Z.js';
|
|
5
|
+
import './chunk-6KT6K6NI.js';
|
|
6
|
+
import './chunk-KOWHTPQC.js';
|
|
7
|
+
import './chunk-GXUFWEP5.js';
|
|
8
|
+
import './chunk-BUQLB5H6.js';
|
|
9
|
+
import './chunk-CFIMNXX5.js';
|
|
10
|
+
import './chunk-LKOZVSXD.js';
|
|
11
|
+
import './chunk-4E7VQIC5.js';
|
|
12
12
|
import './chunk-RIORU7JO.js';
|
|
13
13
|
import './chunk-YPIK2HRL.js';
|
|
14
|
-
import './chunk-
|
|
15
|
-
import './chunk-
|
|
16
|
-
import './chunk-
|
|
17
|
-
import './chunk-
|
|
14
|
+
import './chunk-3KPNXG7H.js';
|
|
15
|
+
import './chunk-KQGCMT5E.js';
|
|
16
|
+
import './chunk-NJIDLCB7.js';
|
|
17
|
+
import './chunk-FAICHNEU.js';
|
|
18
18
|
import './chunk-SFOVKOPG.js';
|
|
19
19
|
import './chunk-VBKLISDI.js';
|
|
20
20
|
import './chunk-XUHDFZZL.js';
|
|
21
21
|
import './chunk-U5R6ZXH3.js';
|
|
22
22
|
import './chunk-QMDDVBCZ.js';
|
|
23
|
-
import './chunk-
|
|
24
|
-
import './chunk-
|
|
23
|
+
import './chunk-5U5IRAPA.js';
|
|
24
|
+
import './chunk-T6JS7L6B.js';
|
|
25
25
|
import './chunk-V7X6ANEM.js';
|
|
26
|
-
import './chunk-
|
|
26
|
+
import './chunk-2UOTJGT6.js';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __typeError = (msg) => {
|
|
3
|
+
throw TypeError(msg);
|
|
4
|
+
};
|
|
5
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
6
|
+
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
7
|
+
var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
|
|
8
|
+
var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
9
|
+
var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
10
|
+
var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
|
11
|
+
|
|
12
|
+
export { __privateAdd, __privateGet, __privateSet, __publicField };
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
var package_default = {
|
|
3
3
|
name: "@hopper-ui/styled-system",
|
|
4
4
|
author: "Workleap",
|
|
5
|
-
version: "
|
|
5
|
+
version: "2.0.1",
|
|
6
6
|
description: "The styled-system package.",
|
|
7
7
|
license: "Apache-2.0",
|
|
8
8
|
repository: {
|
|
@@ -40,39 +40,41 @@ var package_default = {
|
|
|
40
40
|
test: "jest"
|
|
41
41
|
},
|
|
42
42
|
peerDependencies: {
|
|
43
|
-
react: "
|
|
44
|
-
"react-dom": "
|
|
43
|
+
react: "^18",
|
|
44
|
+
"react-dom": "^18"
|
|
45
45
|
},
|
|
46
46
|
dependencies: {
|
|
47
|
-
"@react-aria/ssr": "^3.9.
|
|
48
|
-
clsx: "^2.1.
|
|
47
|
+
"@react-aria/ssr": "^3.9.4",
|
|
48
|
+
clsx: "^2.1.1"
|
|
49
49
|
},
|
|
50
50
|
devDependencies: {
|
|
51
51
|
"@hopper-ui/tokens": "workspace:*",
|
|
52
|
-
"@swc/core": "1.
|
|
53
|
-
"@swc/helpers": "0.5.
|
|
52
|
+
"@swc/core": "1.5.25",
|
|
53
|
+
"@swc/helpers": "0.5.11",
|
|
54
54
|
"@swc/jest": "0.2.36",
|
|
55
|
-
"@testing-library/jest-dom": "6.4.
|
|
56
|
-
"@testing-library/react": "
|
|
55
|
+
"@testing-library/jest-dom": "6.4.5",
|
|
56
|
+
"@testing-library/react": "16.0.0",
|
|
57
57
|
"@types/jest": "29.5.12",
|
|
58
|
-
"@types/react": "18.
|
|
59
|
-
"@types/react-dom": "18.
|
|
60
|
-
"@types/react-test-renderer": "18.0
|
|
61
|
-
"@workleap/eslint-plugin": "3.
|
|
58
|
+
"@types/react": "18.3.3",
|
|
59
|
+
"@types/react-dom": "18.3.0",
|
|
60
|
+
"@types/react-test-renderer": "18.3.0",
|
|
61
|
+
"@workleap/eslint-plugin": "3.2.2",
|
|
62
62
|
"@workleap/swc-configs": "2.2.3",
|
|
63
|
-
"@workleap/tsup-configs": "3.0.
|
|
63
|
+
"@workleap/tsup-configs": "3.0.6",
|
|
64
64
|
"@workleap/typescript-configs": "3.0.2",
|
|
65
|
+
eslint: "8.57.0",
|
|
65
66
|
"identity-obj-proxy": "3.0.0",
|
|
66
67
|
jest: "29.7.0",
|
|
67
68
|
"jest-environment-jsdom": "29.7.0",
|
|
68
|
-
|
|
69
|
+
"jest-fail-on-console": "3.3.0",
|
|
70
|
+
postcss: "8.4.38",
|
|
69
71
|
"postcss-modules": "6.0.0",
|
|
70
|
-
react: "18.
|
|
71
|
-
"react-dom": "18.
|
|
72
|
-
"react-test-renderer": "18.
|
|
73
|
-
"ts-jest": "29.1.
|
|
74
|
-
tsup: "8.0
|
|
75
|
-
typescript: "5.4.
|
|
72
|
+
react: "18.3.1",
|
|
73
|
+
"react-dom": "18.3.1",
|
|
74
|
+
"react-test-renderer": "18.3.1",
|
|
75
|
+
"ts-jest": "29.1.4",
|
|
76
|
+
tsup: "8.1.0",
|
|
77
|
+
typescript: "5.4.5"
|
|
76
78
|
}
|
|
77
79
|
};
|
|
78
80
|
|