@cloudtower/eagle 0.27.59-dry → 0.27.60
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/cjs/index.js +8 -2
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +2137 -2119
- package/dist/esm/index.js +8 -3
- package/dist/esm/stats1.html +1 -1
- package/dist/src/spec/base.d.ts +2 -2
- package/dist/src/styles/token/index.d.ts +1 -0
- package/dist/src/styles/token/zIndices.d.ts +3 -0
- package/dist/stories/docs/core/Link.stories.d.ts +20 -8
- package/dist/style.css +3103 -3085
- package/package.json +5 -5
package/dist/cjs/index.js
CHANGED
|
@@ -1407,6 +1407,10 @@ const Color = {
|
|
|
1407
1407
|
}
|
|
1408
1408
|
};
|
|
1409
1409
|
|
|
1410
|
+
const zIndices = {
|
|
1411
|
+
tableActionColumn: 10
|
|
1412
|
+
};
|
|
1413
|
+
|
|
1410
1414
|
const DonutChartWrapper = /*#__PURE__*/react.styled('div')({
|
|
1411
1415
|
name: "DonutChartWrapper",
|
|
1412
1416
|
class: "E_d1bw7c5z",
|
|
@@ -7091,7 +7095,7 @@ const Link = React.forwardRef((_a, ref) => {
|
|
|
7091
7095
|
{
|
|
7092
7096
|
className,
|
|
7093
7097
|
disabled,
|
|
7094
|
-
type
|
|
7098
|
+
type = "default"
|
|
7095
7099
|
} = _b,
|
|
7096
7100
|
props = __objRest$8(_b, ["className", "disabled", "type"]);
|
|
7097
7101
|
return /* @__PURE__ */React.createElement(Button, __spreadProps$i(__spreadValues$m({}, props), {
|
|
@@ -7099,7 +7103,8 @@ const Link = React.forwardRef((_a, ref) => {
|
|
|
7099
7103
|
disabled,
|
|
7100
7104
|
className: cs(LinkStyle, className, {
|
|
7101
7105
|
"ui-kit-link-disabled": disabled,
|
|
7102
|
-
"ui-kit-link-
|
|
7106
|
+
"ui-kit-link-primary": type === "primary",
|
|
7107
|
+
"ui-kit-link-secondary": type === "secondary"
|
|
7103
7108
|
}),
|
|
7104
7109
|
type: "link"
|
|
7105
7110
|
}));
|
|
@@ -10323,6 +10328,7 @@ exports.useElementsSize = useElementsSize;
|
|
|
10323
10328
|
exports.useKitDispatch = useKitDispatch;
|
|
10324
10329
|
exports.useKitSelector = useKitSelector;
|
|
10325
10330
|
exports.useUIKit = useUIKit;
|
|
10331
|
+
exports.zIndices = zIndices;
|
|
10326
10332
|
Object.keys(parrot).forEach(function (k) {
|
|
10327
10333
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
10328
10334
|
enumerable: true,
|