@doist/reactist 14.0.0 → 14.1.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/dist/reactist.cjs.development.js +6 -3
- package/dist/reactist.cjs.development.js.map +1 -1
- package/dist/reactist.cjs.production.min.js +1 -1
- package/dist/reactist.cjs.production.min.js.map +1 -1
- package/es/components/color-picker/color-picker.js +1 -0
- package/es/components/color-picker/color-picker.js.map +1 -1
- package/es/components/deprecated-dropdown/dropdown.js +4 -2
- package/es/components/deprecated-dropdown/dropdown.js.map +1 -1
- package/es/new-components/tabs/tabs.module.css.js +1 -1
- package/lib/components/color-picker/color-picker.js +1 -1
- package/lib/components/color-picker/color-picker.js.map +1 -1
- package/lib/components/deprecated-dropdown/dropdown.d.ts +6 -2
- package/lib/components/deprecated-dropdown/dropdown.js +1 -1
- package/lib/components/deprecated-dropdown/dropdown.js.map +1 -1
- package/lib/new-components/tabs/tabs.module.css.js +1 -1
- package/package.json +2 -4
- package/styles/reactist.css +1 -1
- package/styles/tabs.css +1 -1
- package/styles/tabs.module.css.css +1 -1
|
@@ -1558,7 +1558,7 @@ function usePrevious(value) {
|
|
|
1558
1558
|
return ref.current;
|
|
1559
1559
|
}
|
|
1560
1560
|
|
|
1561
|
-
var modules_40c67f5b = {"tab":"
|
|
1561
|
+
var modules_40c67f5b = {"tab":"a1064a3b","track":"_06f1b8a1","tab-neutral":"dabbec7d","tab-themed":"e6f5ae4e","track-neutral":"_43913ce5","track-themed":"_39bdfdde","track-xsmall":"_1c148f4e","track-small":"_2a370df5","track-medium":"_77430437","track-large":"_33db5352","track-xlarge":"_60bf9564","track-xxlarge":"_29a35080"};
|
|
1562
1562
|
|
|
1563
1563
|
const _excluded$m = ["as", "children", "id", "exceptionallySetClassName"],
|
|
1564
1564
|
_excluded2$1 = ["children", "space"],
|
|
@@ -2161,7 +2161,8 @@ class Box$1 extends React__default.Component {
|
|
|
2161
2161
|
style: {
|
|
2162
2162
|
display: 'inline-block'
|
|
2163
2163
|
},
|
|
2164
|
-
className: className
|
|
2164
|
+
className: className,
|
|
2165
|
+
"data-testid": "reactist-dropdown-box"
|
|
2165
2166
|
}, top && this._getBodyComponent(), this._getTriggerComponent(), !top && this._getBodyComponent());
|
|
2166
2167
|
}
|
|
2167
2168
|
|
|
@@ -2219,7 +2220,8 @@ function Body({
|
|
|
2219
2220
|
ref: setPosition,
|
|
2220
2221
|
style: style,
|
|
2221
2222
|
className: "body",
|
|
2222
|
-
id: "reactist-dropdown-body"
|
|
2223
|
+
id: "reactist-dropdown-body",
|
|
2224
|
+
"data-testid": "reactist-dropdown-body"
|
|
2223
2225
|
}, children);
|
|
2224
2226
|
}
|
|
2225
2227
|
|
|
@@ -2286,6 +2288,7 @@ function ColorItem({
|
|
|
2286
2288
|
tooltip
|
|
2287
2289
|
}) {
|
|
2288
2290
|
const item = /*#__PURE__*/React__default.createElement("span", {
|
|
2291
|
+
"data-testid": "reactist-color-item",
|
|
2289
2292
|
className: 'reactist color_item' + (isActive ? ' active' : ''),
|
|
2290
2293
|
style: {
|
|
2291
2294
|
backgroundColor: color
|