@class101/cdn-ui-system 0.0.14 → 0.0.15
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/chunk-3XAMXSCG.js +515 -0
- package/{chunk-KAXHKCBQ.js → chunk-CGG5PA2W.js} +1 -143
- package/{chunk-IANUYI35.js → chunk-NHLP3WU5.js} +1 -1
- package/{chunk-7BBOJQDQ.js → chunk-ULWCFEWA.js} +1 -1
- package/chunk-ZBFNXEOS.js +152 -0
- package/contexts/UiSystemProvider.js +3 -2
- package/core/variants/makeStyled/makeStyled.js +4 -3
- package/core/variants/system/system.js +3 -2
- package/hooks/useResponsiveValue/useResponsiveValue.js +3 -2
- package/lib/Animation/FadeAnimation/FadeAnimation.js +3 -2
- package/lib/Animation/RotateAnimation/RotateAnimation.js +3 -2
- package/lib/Animation/SlideAnimation/SlideAnimation.js +3 -2
- package/lib/BreadCrumb/BreadCrumb.js +4 -3
- package/lib/Chip/InputChip/InputChip.js +4 -2
- package/lib/ContentArea/ContentArea.js +3 -2
- package/lib/Elevation/Elevation.js +4 -3
- package/lib/Form/Select/Select.js +4 -3
- package/lib/GlobalStyle/GlobalStyle.js +3 -2
- package/lib/GridList/GridList.js +3 -2
- package/lib/HtmlContentStyle/HtmlContentStyle.js +4 -3
- package/lib/LinearGradient/LinearGradient.js +3 -2
- package/lib/Media/Image/useActualSizes.js +3 -2
- package/lib/Pagination/Pagination.js +4 -3
- package/lib/Portal/Portal.js +3 -2
- package/lib/Slider/Slider.js +4 -3
- package/lib/SliderSection/SliderSection.js +4 -3
- package/lib/Table/Table.js +6 -508
- package/lib/VirtualizedList/VirtualizedList.js +7809 -8
- package/lib/deprecated/Swiper/Swiper.js +4 -3
- package/package.json +1 -1
- package/private/Box/Box.js +4 -3
- package/private/ForwardStyle/StyledChildren.js +4 -3
@@ -0,0 +1,152 @@
|
|
1
|
+
import {
|
2
|
+
require_react_is
|
3
|
+
} from "./chunk-CGG5PA2W.js";
|
4
|
+
import {
|
5
|
+
__commonJS,
|
6
|
+
init_react_shim
|
7
|
+
} from "./chunk-IPJCOOHW.js";
|
8
|
+
|
9
|
+
// node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js
|
10
|
+
var require_hoist_non_react_statics_cjs = __commonJS({
|
11
|
+
"node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js"(exports, module) {
|
12
|
+
init_react_shim();
|
13
|
+
"use strict";
|
14
|
+
var reactIs = require_react_is();
|
15
|
+
var REACT_STATICS = {
|
16
|
+
childContextTypes: true,
|
17
|
+
contextType: true,
|
18
|
+
contextTypes: true,
|
19
|
+
defaultProps: true,
|
20
|
+
displayName: true,
|
21
|
+
getDefaultProps: true,
|
22
|
+
getDerivedStateFromError: true,
|
23
|
+
getDerivedStateFromProps: true,
|
24
|
+
mixins: true,
|
25
|
+
propTypes: true,
|
26
|
+
type: true
|
27
|
+
};
|
28
|
+
var KNOWN_STATICS = {
|
29
|
+
name: true,
|
30
|
+
length: true,
|
31
|
+
prototype: true,
|
32
|
+
caller: true,
|
33
|
+
callee: true,
|
34
|
+
arguments: true,
|
35
|
+
arity: true
|
36
|
+
};
|
37
|
+
var FORWARD_REF_STATICS = {
|
38
|
+
"$$typeof": true,
|
39
|
+
render: true,
|
40
|
+
defaultProps: true,
|
41
|
+
displayName: true,
|
42
|
+
propTypes: true
|
43
|
+
};
|
44
|
+
var MEMO_STATICS = {
|
45
|
+
"$$typeof": true,
|
46
|
+
compare: true,
|
47
|
+
defaultProps: true,
|
48
|
+
displayName: true,
|
49
|
+
propTypes: true,
|
50
|
+
type: true
|
51
|
+
};
|
52
|
+
var TYPE_STATICS = {};
|
53
|
+
TYPE_STATICS[reactIs.ForwardRef] = FORWARD_REF_STATICS;
|
54
|
+
TYPE_STATICS[reactIs.Memo] = MEMO_STATICS;
|
55
|
+
function getStatics(component) {
|
56
|
+
if (reactIs.isMemo(component)) {
|
57
|
+
return MEMO_STATICS;
|
58
|
+
}
|
59
|
+
return TYPE_STATICS[component["$$typeof"]] || REACT_STATICS;
|
60
|
+
}
|
61
|
+
var defineProperty = Object.defineProperty;
|
62
|
+
var getOwnPropertyNames = Object.getOwnPropertyNames;
|
63
|
+
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
64
|
+
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
65
|
+
var getPrototypeOf = Object.getPrototypeOf;
|
66
|
+
var objectPrototype = Object.prototype;
|
67
|
+
function hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {
|
68
|
+
if (typeof sourceComponent !== "string") {
|
69
|
+
if (objectPrototype) {
|
70
|
+
var inheritedComponent = getPrototypeOf(sourceComponent);
|
71
|
+
if (inheritedComponent && inheritedComponent !== objectPrototype) {
|
72
|
+
hoistNonReactStatics(targetComponent, inheritedComponent, blacklist);
|
73
|
+
}
|
74
|
+
}
|
75
|
+
var keys = getOwnPropertyNames(sourceComponent);
|
76
|
+
if (getOwnPropertySymbols) {
|
77
|
+
keys = keys.concat(getOwnPropertySymbols(sourceComponent));
|
78
|
+
}
|
79
|
+
var targetStatics = getStatics(targetComponent);
|
80
|
+
var sourceStatics = getStatics(sourceComponent);
|
81
|
+
for (var i = 0; i < keys.length; ++i) {
|
82
|
+
var key = keys[i];
|
83
|
+
if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) {
|
84
|
+
var descriptor = getOwnPropertyDescriptor(sourceComponent, key);
|
85
|
+
try {
|
86
|
+
defineProperty(targetComponent, key, descriptor);
|
87
|
+
} catch (e) {
|
88
|
+
}
|
89
|
+
}
|
90
|
+
}
|
91
|
+
}
|
92
|
+
return targetComponent;
|
93
|
+
}
|
94
|
+
module.exports = hoistNonReactStatics;
|
95
|
+
}
|
96
|
+
});
|
97
|
+
|
98
|
+
// node_modules/@emotion/unitless/dist/unitless.browser.esm.js
|
99
|
+
init_react_shim();
|
100
|
+
var unitlessKeys = {
|
101
|
+
animationIterationCount: 1,
|
102
|
+
borderImageOutset: 1,
|
103
|
+
borderImageSlice: 1,
|
104
|
+
borderImageWidth: 1,
|
105
|
+
boxFlex: 1,
|
106
|
+
boxFlexGroup: 1,
|
107
|
+
boxOrdinalGroup: 1,
|
108
|
+
columnCount: 1,
|
109
|
+
columns: 1,
|
110
|
+
flex: 1,
|
111
|
+
flexGrow: 1,
|
112
|
+
flexPositive: 1,
|
113
|
+
flexShrink: 1,
|
114
|
+
flexNegative: 1,
|
115
|
+
flexOrder: 1,
|
116
|
+
gridRow: 1,
|
117
|
+
gridRowEnd: 1,
|
118
|
+
gridRowSpan: 1,
|
119
|
+
gridRowStart: 1,
|
120
|
+
gridColumn: 1,
|
121
|
+
gridColumnEnd: 1,
|
122
|
+
gridColumnSpan: 1,
|
123
|
+
gridColumnStart: 1,
|
124
|
+
msGridRow: 1,
|
125
|
+
msGridRowSpan: 1,
|
126
|
+
msGridColumn: 1,
|
127
|
+
msGridColumnSpan: 1,
|
128
|
+
fontWeight: 1,
|
129
|
+
lineHeight: 1,
|
130
|
+
opacity: 1,
|
131
|
+
order: 1,
|
132
|
+
orphans: 1,
|
133
|
+
tabSize: 1,
|
134
|
+
widows: 1,
|
135
|
+
zIndex: 1,
|
136
|
+
zoom: 1,
|
137
|
+
WebkitLineClamp: 1,
|
138
|
+
fillOpacity: 1,
|
139
|
+
floodOpacity: 1,
|
140
|
+
stopOpacity: 1,
|
141
|
+
strokeDasharray: 1,
|
142
|
+
strokeDashoffset: 1,
|
143
|
+
strokeMiterlimit: 1,
|
144
|
+
strokeOpacity: 1,
|
145
|
+
strokeWidth: 1
|
146
|
+
};
|
147
|
+
var unitless_browser_esm_default = unitlessKeys;
|
148
|
+
|
149
|
+
export {
|
150
|
+
require_hoist_non_react_statics_cjs,
|
151
|
+
unitless_browser_esm_default
|
152
|
+
};
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import {
|
2
2
|
emotion_styled_browser_esm_default
|
3
|
-
} from "../../../chunk-
|
4
|
-
import "../../../chunk-
|
5
|
-
import "../../../chunk-
|
3
|
+
} from "../../../chunk-ULWCFEWA.js";
|
4
|
+
import "../../../chunk-NHLP3WU5.js";
|
5
|
+
import "../../../chunk-ZBFNXEOS.js";
|
6
|
+
import "../../../chunk-CGG5PA2W.js";
|
6
7
|
import "../../../chunk-QFKGGJAB.js";
|
7
8
|
import {
|
8
9
|
init_react_shim
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import {
|
2
2
|
useTheme
|
3
|
-
} from "../../../chunk-
|
4
|
-
import "../../../chunk-
|
3
|
+
} from "../../../chunk-NHLP3WU5.js";
|
4
|
+
import "../../../chunk-ZBFNXEOS.js";
|
5
|
+
import "../../../chunk-CGG5PA2W.js";
|
5
6
|
import "../../../chunk-QFKGGJAB.js";
|
6
7
|
import {
|
7
8
|
__spreadProps,
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import {
|
2
2
|
useTheme
|
3
|
-
} from "../../chunk-
|
4
|
-
import "../../chunk-
|
3
|
+
} from "../../chunk-NHLP3WU5.js";
|
4
|
+
import "../../chunk-ZBFNXEOS.js";
|
5
|
+
import "../../chunk-CGG5PA2W.js";
|
5
6
|
import "../../chunk-QFKGGJAB.js";
|
6
7
|
import {
|
7
8
|
init_react_shim
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import {
|
2
2
|
keyframes
|
3
|
-
} from "../../../chunk-
|
4
|
-
import "../../../chunk-
|
3
|
+
} from "../../../chunk-NHLP3WU5.js";
|
4
|
+
import "../../../chunk-ZBFNXEOS.js";
|
5
|
+
import "../../../chunk-CGG5PA2W.js";
|
5
6
|
import "../../../chunk-QFKGGJAB.js";
|
6
7
|
import {
|
7
8
|
React,
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import {
|
2
2
|
keyframes
|
3
|
-
} from "../../../chunk-
|
4
|
-
import "../../../chunk-
|
3
|
+
} from "../../../chunk-NHLP3WU5.js";
|
4
|
+
import "../../../chunk-ZBFNXEOS.js";
|
5
|
+
import "../../../chunk-CGG5PA2W.js";
|
5
6
|
import "../../../chunk-QFKGGJAB.js";
|
6
7
|
import {
|
7
8
|
React,
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import {
|
2
2
|
keyframes
|
3
|
-
} from "../../../chunk-
|
4
|
-
import "../../../chunk-
|
3
|
+
} from "../../../chunk-NHLP3WU5.js";
|
4
|
+
import "../../../chunk-ZBFNXEOS.js";
|
5
|
+
import "../../../chunk-CGG5PA2W.js";
|
5
6
|
import "../../../chunk-QFKGGJAB.js";
|
6
7
|
import {
|
7
8
|
React,
|
@@ -1,10 +1,11 @@
|
|
1
1
|
import {
|
2
2
|
emotion_styled_browser_esm_default
|
3
|
-
} from "../../chunk-
|
3
|
+
} from "../../chunk-ULWCFEWA.js";
|
4
4
|
import {
|
5
5
|
css
|
6
|
-
} from "../../chunk-
|
7
|
-
import "../../chunk-
|
6
|
+
} from "../../chunk-NHLP3WU5.js";
|
7
|
+
import "../../chunk-ZBFNXEOS.js";
|
8
|
+
import "../../chunk-CGG5PA2W.js";
|
8
9
|
import "../../chunk-QFKGGJAB.js";
|
9
10
|
import {
|
10
11
|
React,
|
@@ -3,9 +3,11 @@ import {
|
|
3
3
|
} from "../../../chunk-PXGPVISY.js";
|
4
4
|
import {
|
5
5
|
require_hoist_non_react_statics_cjs,
|
6
|
-
require_react_is,
|
7
6
|
unitless_browser_esm_default
|
8
|
-
} from "../../../chunk-
|
7
|
+
} from "../../../chunk-ZBFNXEOS.js";
|
8
|
+
import {
|
9
|
+
require_react_is
|
10
|
+
} from "../../../chunk-CGG5PA2W.js";
|
9
11
|
import {
|
10
12
|
React,
|
11
13
|
__commonJS,
|
@@ -1,12 +1,13 @@
|
|
1
1
|
import {
|
2
2
|
emotion_styled_browser_esm_default
|
3
|
-
} from "../../chunk-
|
3
|
+
} from "../../chunk-ULWCFEWA.js";
|
4
4
|
import {
|
5
5
|
variant
|
6
6
|
} from "../../chunk-DNFIUSBY.js";
|
7
7
|
import "../../chunk-XYFEP7P7.js";
|
8
|
-
import "../../chunk-
|
9
|
-
import "../../chunk-
|
8
|
+
import "../../chunk-NHLP3WU5.js";
|
9
|
+
import "../../chunk-ZBFNXEOS.js";
|
10
|
+
import "../../chunk-CGG5PA2W.js";
|
10
11
|
import "../../chunk-QFKGGJAB.js";
|
11
12
|
import {
|
12
13
|
init_react_shim
|
@@ -1,12 +1,13 @@
|
|
1
1
|
import {
|
2
2
|
emotion_styled_browser_esm_default
|
3
|
-
} from "../../../chunk-
|
3
|
+
} from "../../../chunk-ULWCFEWA.js";
|
4
4
|
import {
|
5
5
|
variant
|
6
6
|
} from "../../../chunk-DNFIUSBY.js";
|
7
7
|
import "../../../chunk-XYFEP7P7.js";
|
8
|
-
import "../../../chunk-
|
9
|
-
import "../../../chunk-
|
8
|
+
import "../../../chunk-NHLP3WU5.js";
|
9
|
+
import "../../../chunk-ZBFNXEOS.js";
|
10
|
+
import "../../../chunk-CGG5PA2W.js";
|
10
11
|
import "../../../chunk-QFKGGJAB.js";
|
11
12
|
import {
|
12
13
|
React,
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import {
|
2
2
|
Global,
|
3
3
|
css
|
4
|
-
} from "../../chunk-
|
5
|
-
import "../../chunk-
|
4
|
+
} from "../../chunk-NHLP3WU5.js";
|
5
|
+
import "../../chunk-ZBFNXEOS.js";
|
6
|
+
import "../../chunk-CGG5PA2W.js";
|
6
7
|
import "../../chunk-QFKGGJAB.js";
|
7
8
|
import {
|
8
9
|
React,
|
package/lib/GridList/GridList.js
CHANGED
@@ -6,8 +6,9 @@ import {
|
|
6
6
|
} from "../../chunk-3KYAQ2NT.js";
|
7
7
|
import {
|
8
8
|
useTheme
|
9
|
-
} from "../../chunk-
|
10
|
-
import "../../chunk-
|
9
|
+
} from "../../chunk-NHLP3WU5.js";
|
10
|
+
import "../../chunk-ZBFNXEOS.js";
|
11
|
+
import "../../chunk-CGG5PA2W.js";
|
11
12
|
import "../../chunk-QFKGGJAB.js";
|
12
13
|
import {
|
13
14
|
React,
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import {
|
2
2
|
emotion_styled_browser_esm_default
|
3
|
-
} from "../../chunk-
|
4
|
-
import "../../chunk-
|
5
|
-
import "../../chunk-
|
3
|
+
} from "../../chunk-ULWCFEWA.js";
|
4
|
+
import "../../chunk-NHLP3WU5.js";
|
5
|
+
import "../../chunk-ZBFNXEOS.js";
|
6
|
+
import "../../chunk-CGG5PA2W.js";
|
6
7
|
import "../../chunk-QFKGGJAB.js";
|
7
8
|
import {
|
8
9
|
__spreadProps,
|
@@ -5,8 +5,9 @@ import "../../chunk-PLVSTHAU.js";
|
|
5
5
|
import "../../chunk-XYFEP7P7.js";
|
6
6
|
import {
|
7
7
|
useTheme
|
8
|
-
} from "../../chunk-
|
9
|
-
import "../../chunk-
|
8
|
+
} from "../../chunk-NHLP3WU5.js";
|
9
|
+
import "../../chunk-ZBFNXEOS.js";
|
10
|
+
import "../../chunk-CGG5PA2W.js";
|
10
11
|
import "../../chunk-QFKGGJAB.js";
|
11
12
|
import {
|
12
13
|
React,
|
@@ -7,8 +7,9 @@ import {
|
|
7
7
|
import "../../../chunk-RBRSEVW3.js";
|
8
8
|
import {
|
9
9
|
useTheme
|
10
|
-
} from "../../../chunk-
|
11
|
-
import "../../../chunk-
|
10
|
+
} from "../../../chunk-NHLP3WU5.js";
|
11
|
+
import "../../../chunk-ZBFNXEOS.js";
|
12
|
+
import "../../../chunk-CGG5PA2W.js";
|
12
13
|
import "../../../chunk-QFKGGJAB.js";
|
13
14
|
import {
|
14
15
|
init_react_shim
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import {
|
2
2
|
emotion_styled_browser_esm_default
|
3
|
-
} from "../../chunk-
|
4
|
-
import "../../chunk-
|
5
|
-
import "../../chunk-
|
3
|
+
} from "../../chunk-ULWCFEWA.js";
|
4
|
+
import "../../chunk-NHLP3WU5.js";
|
5
|
+
import "../../chunk-ZBFNXEOS.js";
|
6
|
+
import "../../chunk-CGG5PA2W.js";
|
6
7
|
import "../../chunk-QFKGGJAB.js";
|
7
8
|
import {
|
8
9
|
React,
|
package/lib/Portal/Portal.js
CHANGED
@@ -5,8 +5,9 @@ import {
|
|
5
5
|
import {
|
6
6
|
Global,
|
7
7
|
css
|
8
|
-
} from "../../chunk-
|
9
|
-
import "../../chunk-
|
8
|
+
} from "../../chunk-NHLP3WU5.js";
|
9
|
+
import "../../chunk-ZBFNXEOS.js";
|
10
|
+
import "../../chunk-CGG5PA2W.js";
|
10
11
|
import "../../chunk-QFKGGJAB.js";
|
11
12
|
import {
|
12
13
|
React,
|
package/lib/Slider/Slider.js
CHANGED
@@ -15,11 +15,12 @@ import {
|
|
15
15
|
} from "../../chunk-7YEJCBTL.js";
|
16
16
|
import {
|
17
17
|
emotion_styled_browser_esm_default
|
18
|
-
} from "../../chunk-
|
18
|
+
} from "../../chunk-ULWCFEWA.js";
|
19
19
|
import {
|
20
20
|
useTheme
|
21
|
-
} from "../../chunk-
|
22
|
-
import "../../chunk-
|
21
|
+
} from "../../chunk-NHLP3WU5.js";
|
22
|
+
import "../../chunk-ZBFNXEOS.js";
|
23
|
+
import "../../chunk-CGG5PA2W.js";
|
23
24
|
import "../../chunk-QFKGGJAB.js";
|
24
25
|
import {
|
25
26
|
React,
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import {
|
2
2
|
emotion_styled_browser_esm_default
|
3
|
-
} from "../../chunk-
|
4
|
-
import "../../chunk-
|
5
|
-
import "../../chunk-
|
3
|
+
} from "../../chunk-ULWCFEWA.js";
|
4
|
+
import "../../chunk-NHLP3WU5.js";
|
5
|
+
import "../../chunk-ZBFNXEOS.js";
|
6
|
+
import "../../chunk-CGG5PA2W.js";
|
6
7
|
import "../../chunk-QFKGGJAB.js";
|
7
8
|
import {
|
8
9
|
React,
|