@qsxy/element-plus-react 1.0.0-next.4 → 1.0.0-next.5

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.
Files changed (37) hide show
  1. package/dist/Carousel/Carousel.d.ts +4 -0
  2. package/dist/Carousel/Carousel.js +168 -0
  3. package/dist/Carousel/CarouselContext.d.ts +4 -0
  4. package/dist/Carousel/CarouselContext.js +52 -0
  5. package/dist/Carousel/CarouselItem.d.ts +4 -0
  6. package/dist/Carousel/CarouselItem.js +75 -0
  7. package/dist/Carousel/hooks/useCarousel.d.ts +37 -0
  8. package/dist/Carousel/hooks/useCarousel.js +348 -0
  9. package/dist/Carousel/hooks/useCarouselItem.d.ts +8 -0
  10. package/dist/Carousel/hooks/useCarouselItem.js +161 -0
  11. package/dist/Carousel/index.d.ts +3 -0
  12. package/dist/Carousel/index.js +42 -0
  13. package/dist/Carousel/typings.d.ts +83 -0
  14. package/dist/Carousel/typings.js +17 -0
  15. package/dist/DatePicker/DatePicker.js +1 -1
  16. package/dist/DateTimePicker/DateTimePicker.d.ts +1 -1
  17. package/dist/Dialog/Dialog.js +2 -2
  18. package/dist/Drawer/Drawer.js +8 -8
  19. package/dist/Form/utils/classUtil.js +2 -2
  20. package/dist/Input/InputRange.js +3 -3
  21. package/dist/MessageBox/MessageBox.js +1 -1
  22. package/dist/Popper/Popper.js +7 -7
  23. package/dist/Progress/Progress.js +1 -1
  24. package/dist/Table/hooks/useSelection.d.ts +1 -8
  25. package/dist/Table/util.js +2 -2
  26. package/dist/TimePicker/TimePicker.js +1 -1
  27. package/dist/hooks/prefix.d.ts +1 -1
  28. package/dist/hooks/prefix.js +4 -4
  29. package/dist/hooks/useClassNames.js +1 -1
  30. package/dist/index.css +222 -0
  31. package/dist/index.d.ts +2 -0
  32. package/dist/index.js +5 -0
  33. package/dist/theme-chalk/carousel/index.scss +237 -0
  34. package/dist/theme-chalk/dev.scss +2 -0
  35. package/dist/theme-chalk/index.scss +1 -1
  36. package/package.json +1 -1
  37. package/dist/theme-chalk/build.scss +0 -64
@@ -189,8 +189,8 @@ function InternalElDialog(props, ref) {
189
189
  style: {
190
190
  ...props.style,
191
191
  // @ts-ignore
192
- [`--${import_prefix.globalKey}-dialog-width`]: fullscreen || classPrefix !== "dialog" ? "" : (0, import_Util.addUnit)(width),
193
- [`--${import_prefix.globalKey}-dialog-margin-top`]: (0, import_Util.addUnit)(top)
192
+ [`--${import_prefix.namespace}-dialog-width`]: fullscreen || classPrefix !== "dialog" ? "" : (0, import_Util.addUnit)(width),
193
+ [`--${import_prefix.namespace}-dialog-margin-top`]: (0, import_Util.addUnit)(top)
194
194
  },
195
195
  ref: dialogRef
196
196
  },
@@ -77,9 +77,9 @@ function InternalComp(props, ref) {
77
77
  setVisible(false);
78
78
  onClose == null ? void 0 : onClose();
79
79
  } else if (backdrop === "static") {
80
- (0, import_dom_lib.addClass)(drawerRef.current, `${import_prefix.globalKey}-drawer-shake`);
80
+ (0, import_dom_lib.addClass)(drawerRef.current, `${import_prefix.namespace}-drawer-shake`);
81
81
  setTimeout(() => {
82
- (0, import_dom_lib.removeClass)(drawerRef.current, `${import_prefix.globalKey}-drawer-shake`);
82
+ (0, import_dom_lib.removeClass)(drawerRef.current, `${import_prefix.namespace}-drawer-shake`);
83
83
  }, 300);
84
84
  }
85
85
  });
@@ -96,12 +96,12 @@ function InternalComp(props, ref) {
96
96
  duration: 300,
97
97
  onEnter: () => {
98
98
  setTimeout(() => {
99
- (0, import_dom_lib.addClass)(backdropRef.current, `${import_prefix.globalKey}-anim-in`);
99
+ (0, import_dom_lib.addClass)(backdropRef.current, `${import_prefix.namespace}-anim-in`);
100
100
  }, 10);
101
101
  },
102
- beforeLeave: () => (0, import_dom_lib.removeClass)(backdropRef.current, `${import_prefix.globalKey}-anim-in`)
102
+ beforeLeave: () => (0, import_dom_lib.removeClass)(backdropRef.current, `${import_prefix.namespace}-anim-in`)
103
103
  },
104
- /* @__PURE__ */ import_react.default.createElement("div", { className: (0, import_classnames.default)(b`backdrop`, `${import_prefix.globalKey}-anim-fade`), style: { zIndex: import_Util.PopupManager.nextZIndex() }, ref: backdropRef })
104
+ /* @__PURE__ */ import_react.default.createElement("div", { className: (0, import_classnames.default)(b`backdrop`, `${import_prefix.namespace}-anim-fade`), style: { zIndex: import_Util.PopupManager.nextZIndex() }, ref: backdropRef })
105
105
  ),
106
106
  document.body
107
107
  ), (0, import_react_dom.createPortal)(
@@ -120,8 +120,8 @@ function InternalComp(props, ref) {
120
120
  },
121
121
  beforeLeave: () => {
122
122
  var _a;
123
- (0, import_dom_lib.removeClass)(drawerRef.current, `${import_prefix.globalKey}-anim-slide-in`);
124
- (0, import_dom_lib.addClass)(drawerRef.current, `${import_prefix.globalKey}-anim-slide-out`);
123
+ (0, import_dom_lib.removeClass)(drawerRef.current, `${import_prefix.namespace}-anim-slide-in`);
124
+ (0, import_dom_lib.addClass)(drawerRef.current, `${import_prefix.namespace}-anim-slide-out`);
125
125
  (_a = props.beforeLeave) == null ? void 0 : _a.call(props);
126
126
  },
127
127
  onLeave: props.onLeave,
@@ -131,7 +131,7 @@ function InternalComp(props, ref) {
131
131
  /* @__PURE__ */ import_react.default.createElement("div", { className: (0, import_classnames.default)(b`wrapper`, props.className), style: { ...props.style, zIndex: import_Util.PopupManager.nextZIndex() }, ref: ref || wrapperRef }, /* @__PURE__ */ import_react.default.createElement(
132
132
  "div",
133
133
  {
134
- className: (0, import_classnames.default)(wb(size, placement), `${import_prefix.globalKey}-anim-slide-in`, `${import_prefix.globalKey}-anim-${placement}`),
134
+ className: (0, import_classnames.default)(wb(size, placement), `${import_prefix.namespace}-anim-slide-in`, `${import_prefix.namespace}-anim-${placement}`),
135
135
  style: { display: "block" },
136
136
  ref: drawerRef
137
137
  },
@@ -37,10 +37,10 @@ module.exports = __toCommonJS(classUtil_exports);
37
37
  var import_classnames = __toESM(require("classnames"));
38
38
  var import_prefix = require("../../hooks/prefix");
39
39
  var prefixSplit = (splitCode, ...classes) => {
40
- const mergeClasses = classes.length ? (0, import_classnames.default)(...classes).split(" ").map((item) => (0, import_prefix.prefix)(`${import_prefix.globalKey}-form-item`, item, splitCode)) : [];
40
+ const mergeClasses = classes.length ? (0, import_classnames.default)(...classes).split(" ").map((item) => (0, import_prefix.prefix)(`${import_prefix.namespace}-form-item`, item, splitCode)) : [];
41
41
  return mergeClasses.filter((cls) => cls).join(" ");
42
42
  };
43
- var b = (name) => `${import_prefix.globalKey}-${name}`;
43
+ var b = (name) => `${import_prefix.namespace}-${name}`;
44
44
  var e = (...classes) => prefixSplit("__", ...classes);
45
45
  var m = (...classes) => prefixSplit("--", ...classes);
46
46
  // Annotate the CommonJS export names for ESM import in node:
@@ -214,7 +214,7 @@ var InputRange = (0, import_react.forwardRef)((props, ref) => {
214
214
  if (nodeType === "ElIcon") {
215
215
  return (0, import_react.cloneElement)(prefix, {
216
216
  ...prefix.props,
217
- className: (0, import_classnames.default)((_a = prefix.props) == null ? void 0 : _a.className, `${import_prefix.globalKey}-range__icon`)
217
+ className: (0, import_classnames.default)((_a = prefix.props) == null ? void 0 : _a.className, `${import_prefix.namespace}-range__icon`)
218
218
  });
219
219
  }
220
220
  }
@@ -229,11 +229,11 @@ var InputRange = (0, import_react.forwardRef)((props, ref) => {
229
229
  if (nodeType === "ElIcon") {
230
230
  return (0, import_react.cloneElement)(suffix, {
231
231
  ...suffix.props,
232
- className: (0, import_classnames.default)((_a = suffix.props) == null ? void 0 : _a.className, `${import_prefix.globalKey}-input__icon ${import_prefix.globalKey}-range__close-icon`)
232
+ className: (0, import_classnames.default)((_a = suffix.props) == null ? void 0 : _a.className, `${import_prefix.namespace}-input__icon ${import_prefix.namespace}-range__close-icon`)
233
233
  });
234
234
  }
235
235
  } else {
236
- return /* @__PURE__ */ import_react.default.createElement("span", { className: `${import_prefix.globalKey}-range__end-icon` }, suffix);
236
+ return /* @__PURE__ */ import_react.default.createElement("span", { className: `${import_prefix.namespace}-range__end-icon` }, suffix);
237
237
  }
238
238
  }
239
239
  return null;
@@ -189,7 +189,7 @@ var MessageBox = (0, import_react.memo)(
189
189
  classPrefix,
190
190
  visible,
191
191
  className: (0, import_classnames.default)("is-message-box", className),
192
- style: { ...style, [`--${import_prefix.globalKey}-messagebox-width`]: (0, import_Util.addUnit)(width) },
192
+ style: { ...style, [`--${import_prefix.namespace}-messagebox-width`]: (0, import_Util.addUnit)(width) },
193
193
  modal: true,
194
194
  overflow,
195
195
  showClose,
@@ -87,13 +87,13 @@ var Popper = (0, import_react.forwardRef)((props, ref) => {
87
87
  const animation = (0, import_react.useMemo)(() => {
88
88
  var _a2, _b, _c, _d;
89
89
  if ((0, import_startsWith.default)(((_a2 = popperInstance == null ? void 0 : popperInstance.state) == null ? void 0 : _a2.placement) || (props == null ? void 0 : props.placement), "top")) {
90
- return `${import_prefix.globalKey}-slide-down`;
90
+ return `${import_prefix.namespace}-slide-down`;
91
91
  } else if ((0, import_startsWith.default)(((_b = popperInstance == null ? void 0 : popperInstance.state) == null ? void 0 : _b.placement) || (props == null ? void 0 : props.placement), "bottom")) {
92
- return `${import_prefix.globalKey}-slide-up`;
92
+ return `${import_prefix.namespace}-slide-up`;
93
93
  } else if ((0, import_startsWith.default)(((_c = popperInstance == null ? void 0 : popperInstance.state) == null ? void 0 : _c.placement) || (props == null ? void 0 : props.placement), "left")) {
94
- return `${import_prefix.globalKey}-slide-right`;
94
+ return `${import_prefix.namespace}-slide-right`;
95
95
  } else if ((0, import_startsWith.default)(((_d = popperInstance == null ? void 0 : popperInstance.state) == null ? void 0 : _d.placement) || (props == null ? void 0 : props.placement), "right")) {
96
- return `${import_prefix.globalKey}-slide-left`;
96
+ return `${import_prefix.namespace}-slide-left`;
97
97
  }
98
98
  }, [(_a = popperInstance == null ? void 0 : popperInstance.state) == null ? void 0 : _a.placement, props == null ? void 0 : props.placement]);
99
99
  const afterLeave = (0, import_react.useCallback)(() => {
@@ -115,8 +115,8 @@ var Popper = (0, import_react.forwardRef)((props, ref) => {
115
115
  }
116
116
  }, [popperInstance]);
117
117
  (0, import_hooks.useComponentWillMount)(() => {
118
- if (!transitionProps.unmountOnExit && document.getElementById(`${import_prefix.globalKey}-popper-${id}`)) {
119
- document.getElementById(`${import_prefix.globalKey}-popper-${id}`).parentNode.removeChild(document.getElementById(`${import_prefix.globalKey}-popper-${id}`));
118
+ if (!transitionProps.unmountOnExit && document.getElementById(`${import_prefix.namespace}-popper-${id}`)) {
119
+ document.getElementById(`${import_prefix.namespace}-popper-${id}`).parentNode.removeChild(document.getElementById(`${import_prefix.namespace}-popper-${id}`));
120
120
  }
121
121
  });
122
122
  (0, import_react.useImperativeHandle)(ref, () => ({
@@ -126,7 +126,7 @@ var Popper = (0, import_react.forwardRef)((props, ref) => {
126
126
  () => /* @__PURE__ */ import_react.default.createElement(import_Transition.Transition, { nodeRef: { current: popperElement }, visible, name: animation, className, afterLeave, ...transitionProps }, /* @__PURE__ */ import_react.default.createElement(
127
127
  "div",
128
128
  {
129
- id: `${import_prefix.globalKey}-popper-${id}`,
129
+ id: `${import_prefix.namespace}-popper-${id}`,
130
130
  className: (0, import_classnames.default)(b(), is(effect), popperClass),
131
131
  onMouseEnter,
132
132
  onMouseLeave,
@@ -173,7 +173,7 @@ var Progress = (props) => {
173
173
  {
174
174
  className: be("circle", "track"),
175
175
  d: trackPath,
176
- stroke: `var(--${import_prefix.globalKey}-fill-color-light, #e5e9f2)`,
176
+ stroke: `var(--${import_prefix.namespace}-fill-color-light, #e5e9f2)`,
177
177
  strokeWidth: relativeStrokeWidth,
178
178
  fill: "none",
179
179
  style: trailPathStyle
@@ -1,12 +1,5 @@
1
1
  /// <reference types="react" />
2
2
  import { TableProps } from '../typings';
3
- /**
4
- * @author Parker
5
- * @CreateTime 2022/9/17 19:39:22
6
- * @LastEditor Parker
7
- * @ModifyTime 2022/11/7 19:38:04
8
- * @Description
9
- */
10
3
  export declare const useSelection: <T>(props: TableProps<T>, data: T[]) => {
11
4
  state: {
12
5
  isIndeterminate: any;
@@ -46,4 +39,4 @@ export declare const activeRow: <T>(payload: T) => Action;
46
39
  * @param payload
47
40
  * @returns
48
41
  */
49
- export declare const onCheck: <T>(payload: Pick<State<T>, "selection" | "isIndeterminate">) => Action;
42
+ export declare const onCheck: <T>(payload: Pick<State<T>, "isIndeterminate" | "selection">) => Action;
@@ -36,7 +36,7 @@ var import_prefix = require("../hooks/prefix");
36
36
  var TableIdManager = {
37
37
  tableId: 0,
38
38
  columnId: 0,
39
- nextTableId: () => `${import_prefix.globalKey}-table_${++TableIdManager.tableId}`,
39
+ nextTableId: () => `${import_prefix.namespace}-table_${++TableIdManager.tableId}`,
40
40
  nextColumnId: (start) => `column_${start ? ++start : ++TableIdManager.columnId}`
41
41
  };
42
42
  var cacheStringFunction = (fn) => {
@@ -73,7 +73,7 @@ var getStyle = (element, styleName) => {
73
73
  var removePopper;
74
74
  function createTablePopper(parentNode, trigger, popperContent, tooltipRef) {
75
75
  var _a;
76
- const ns = import_prefix.globalKey || "r";
76
+ const ns = import_prefix.namespace || "r";
77
77
  const scrollContainer = parentNode == null ? void 0 : parentNode.querySelector(`.${ns}-scrollbar__wrap`);
78
78
  removePopper == null ? void 0 : removePopper();
79
79
  const renderDom = document.createDocumentFragment();
@@ -178,7 +178,7 @@ var TimePicker = (0, import_react.forwardRef)((props, ref) => {
178
178
  handleChange(null);
179
179
  initialValue.current = "";
180
180
  },
181
- className: (0, import_classnames.default)({ [`${import_prefix.globalKey}-date`]: readonly, "is-active": visible }),
181
+ className: (0, import_classnames.default)({ [`${import_prefix.namespace}-date`]: readonly, "is-active": visible }),
182
182
  style: props.style,
183
183
  error,
184
184
  warning,
@@ -1,5 +1,5 @@
1
1
  /// <reference types="lodash" />
2
- export declare const globalKey = "el";
2
+ export declare const namespace = "el";
3
3
  export declare const getClassNamePrefix: () => string;
4
4
  export declare const defaultClassPrefix: (name: string) => string;
5
5
  export type ISplitCode = '-' | '__' | '--';
@@ -32,15 +32,15 @@ __export(prefix_exports, {
32
32
  default: () => prefix_default,
33
33
  defaultClassPrefix: () => defaultClassPrefix,
34
34
  getClassNamePrefix: () => getClassNamePrefix,
35
- globalKey: () => globalKey,
35
+ namespace: () => namespace,
36
36
  prefix: () => prefix
37
37
  });
38
38
  module.exports = __toCommonJS(prefix_exports);
39
39
  var import_classnames = __toESM(require("classnames"));
40
40
  var import_curry = __toESM(require("lodash/curry"));
41
- var globalKey = "el";
41
+ var namespace = "el";
42
42
  var getClassNamePrefix = () => {
43
- return globalKey + "-";
43
+ return namespace + "-";
44
44
  };
45
45
  var defaultClassPrefix = (name) => `${getClassNamePrefix()}${name}`;
46
46
  function prefix(pre, className, split = "-") {
@@ -57,6 +57,6 @@ var prefix_default = (0, import_curry.default)(prefix);
57
57
  0 && (module.exports = {
58
58
  defaultClassPrefix,
59
59
  getClassNamePrefix,
60
- globalKey,
60
+ namespace,
61
61
  prefix
62
62
  });
@@ -37,7 +37,7 @@ var import_isBoolean = __toESM(require("lodash/isBoolean"));
37
37
  var import_last = __toESM(require("lodash/last"));
38
38
  var import_react = require("react");
39
39
  var import_prefix = require("./prefix");
40
- function useClassNames(str, classPrefix = import_prefix.globalKey) {
40
+ function useClassNames(str, classPrefix = import_prefix.namespace) {
41
41
  const componentName = (0, import_prefix.prefix)(classPrefix, str);
42
42
  const prefixSplit = (0, import_react.useCallback)(
43
43
  (splitCode, ...classes) => {
package/dist/index.css CHANGED
@@ -4721,6 +4721,228 @@
4721
4721
  background: transparent;
4722
4722
  }
4723
4723
 
4724
+ .el-carousel__item {
4725
+ position: absolute;
4726
+ top: 0;
4727
+ left: 0;
4728
+ width: 100%;
4729
+ height: 100%;
4730
+ display: inline-block;
4731
+ overflow: hidden;
4732
+ z-index: calc(var(--el-index-normal) - 1);
4733
+ }
4734
+ .el-carousel__item.is-active {
4735
+ z-index: calc(var(--el-index-normal) - 1);
4736
+ }
4737
+ .el-carousel__item.is-animating {
4738
+ transition: transform 0.4s ease-in-out;
4739
+ }
4740
+
4741
+ .el-carousel__item--card {
4742
+ width: 50%;
4743
+ transition: transform 0.4s ease-in-out;
4744
+ }
4745
+ .el-carousel__item--card.is-in-stage {
4746
+ cursor: pointer;
4747
+ z-index: var(--el-index-normal);
4748
+ }
4749
+ .el-carousel__item--card.is-in-stage:hover .el-carousel__mask, .el-carousel__item--card.is-in-stage.is-hover .el-carousel__mask {
4750
+ opacity: 0.12;
4751
+ }
4752
+ .el-carousel__item--card.is-active {
4753
+ z-index: calc(var(--el-index-normal) + 1);
4754
+ }
4755
+
4756
+ .el-carousel__item--card-vertical {
4757
+ width: 100%;
4758
+ height: 50%;
4759
+ }
4760
+
4761
+ .el-carousel__mask {
4762
+ position: absolute;
4763
+ width: 100%;
4764
+ height: 100%;
4765
+ top: 0;
4766
+ left: 0;
4767
+ background-color: var(--el-color-white);
4768
+ opacity: 0.24;
4769
+ transition: var(--el-transition-duration-fast);
4770
+ }
4771
+
4772
+ .el-carousel {
4773
+ --el-carousel-arrow-font-size: 12px;
4774
+ --el-carousel-arrow-size: 36px;
4775
+ --el-carousel-arrow-background: rgba(31, 45, 61, 0.11);
4776
+ --el-carousel-arrow-hover-background: rgba(31, 45, 61, 0.23);
4777
+ --el-carousel-indicator-width: 30px;
4778
+ --el-carousel-indicator-height: 2px;
4779
+ --el-carousel-indicator-padding-horizontal: 4px;
4780
+ --el-carousel-indicator-padding-vertical: 12px;
4781
+ --el-carousel-indicator-out-color: var(--el-border-color-hover);
4782
+ position: relative;
4783
+ }
4784
+
4785
+ .el-carousel--horizontal,
4786
+ .el-carousel--vertical {
4787
+ overflow: hidden;
4788
+ }
4789
+
4790
+ .el-carousel__container {
4791
+ position: relative;
4792
+ height: 300px;
4793
+ }
4794
+
4795
+ .el-carousel__arrow {
4796
+ border: none;
4797
+ outline: none;
4798
+ padding: 0;
4799
+ margin: 0;
4800
+ height: var(--el-carousel-arrow-size);
4801
+ width: var(--el-carousel-arrow-size);
4802
+ cursor: pointer;
4803
+ transition: var(--el-transition-duration);
4804
+ border-radius: 50%;
4805
+ background-color: var(--el-carousel-arrow-background);
4806
+ color: #fff;
4807
+ position: absolute;
4808
+ top: 50%;
4809
+ z-index: 10;
4810
+ transform: translateY(-50%);
4811
+ text-align: center;
4812
+ font-size: var(--el-carousel-arrow-font-size);
4813
+ display: inline-flex;
4814
+ justify-content: center;
4815
+ align-items: center;
4816
+ }
4817
+ .el-carousel__arrow:hover {
4818
+ background-color: var(--el-carousel-arrow-hover-background);
4819
+ }
4820
+ .el-carousel__arrow i {
4821
+ cursor: pointer;
4822
+ }
4823
+
4824
+ .el-carousel__arrow--left {
4825
+ left: 16px;
4826
+ }
4827
+
4828
+ .el-carousel__arrow--right {
4829
+ right: 16px;
4830
+ }
4831
+
4832
+ .el-carousel__indicators {
4833
+ position: absolute;
4834
+ list-style: none;
4835
+ margin: 0;
4836
+ padding: 0;
4837
+ z-index: calc(var(--el-index-normal) + 1);
4838
+ }
4839
+
4840
+ .el-carousel__indicators--horizontal {
4841
+ bottom: 0;
4842
+ left: 50%;
4843
+ transform: translate(-50%);
4844
+ }
4845
+
4846
+ .el-carousel__indicators--vertical {
4847
+ right: 0;
4848
+ top: 50%;
4849
+ transform: translateY(-50%);
4850
+ }
4851
+
4852
+ .el-carousel__indicators--outside {
4853
+ bottom: calc(var(--el-carousel-indicator-height) + var(--el-carousel-indicator-padding-vertical) * 2);
4854
+ text-align: center;
4855
+ position: static;
4856
+ transform: none;
4857
+ }
4858
+ .el-carousel__indicators--outside .el-carousel__indicator:hover button {
4859
+ opacity: 0.64;
4860
+ }
4861
+ .el-carousel__indicators--outside button {
4862
+ background-color: var(--el-carousel-indicator-out-color);
4863
+ opacity: 0.24;
4864
+ }
4865
+
4866
+ .el-carousel__indicators--right {
4867
+ right: 0;
4868
+ }
4869
+
4870
+ .el-carousel__indicators--labels {
4871
+ left: 0;
4872
+ right: 0;
4873
+ transform: none;
4874
+ text-align: center;
4875
+ }
4876
+ .el-carousel__indicators--labels .el-carousel__button {
4877
+ height: auto;
4878
+ width: auto;
4879
+ padding: 2px 18px;
4880
+ font-size: 12px;
4881
+ color: #000;
4882
+ }
4883
+ .el-carousel__indicators--labels .el-carousel__indicator {
4884
+ padding: 6px 4px;
4885
+ }
4886
+
4887
+ .el-carousel__indicator {
4888
+ background-color: transparent;
4889
+ cursor: pointer;
4890
+ }
4891
+ .el-carousel__indicator:hover button {
4892
+ opacity: 0.72;
4893
+ }
4894
+
4895
+ .el-carousel__indicator--horizontal {
4896
+ display: inline-block;
4897
+ padding: var(--el-carousel-indicator-padding-vertical) var(--el-carousel-indicator-padding-horizontal);
4898
+ }
4899
+
4900
+ .el-carousel__indicator--vertical {
4901
+ padding: var(--el-carousel-indicator-padding-horizontal) var(--el-carousel-indicator-padding-vertical);
4902
+ }
4903
+ .el-carousel__indicator--vertical .el-carousel__button {
4904
+ width: var(--el-carousel-indicator-height);
4905
+ height: calc(var(--el-carousel-indicator-width) / 2);
4906
+ }
4907
+
4908
+ .el-carousel__indicator.is-active button {
4909
+ opacity: 1;
4910
+ }
4911
+
4912
+ .el-carousel__button {
4913
+ display: block;
4914
+ opacity: 0.48;
4915
+ width: var(--el-carousel-indicator-width);
4916
+ height: var(--el-carousel-indicator-height);
4917
+ background-color: #fff;
4918
+ border: none;
4919
+ outline: none;
4920
+ padding: 0;
4921
+ margin: 0;
4922
+ cursor: pointer;
4923
+ transition: var(--el-transition-duration);
4924
+ }
4925
+
4926
+ .carousel-arrow-left-enter-from,
4927
+ .carousel-arrow-left-leave-active {
4928
+ transform: translateY(-50%) translate(-10px);
4929
+ opacity: 0;
4930
+ }
4931
+
4932
+ .carousel-arrow-right-enter-from,
4933
+ .carousel-arrow-right-leave-active {
4934
+ transform: translateY(-50%) translate(10px);
4935
+ opacity: 0;
4936
+ }
4937
+
4938
+ .el-transitioning {
4939
+ filter: url(#elCarouselHorizontal);
4940
+ }
4941
+
4942
+ .el-transitioning-vertical {
4943
+ filter: url(#elCarouselVertical);
4944
+ }
4945
+
4724
4946
  .el-checkbox {
4725
4947
  --el-checkbox-text-color: var(--el-text-color-regular);
4726
4948
  --el-checkbox-input-width: 16px;
package/dist/index.d.ts CHANGED
@@ -53,6 +53,8 @@ export { Badge as ElBadge } from './Badge';
53
53
  export type { BadgeProps } from './Badge';
54
54
  export { Card as ElCard } from './Card';
55
55
  export type { CardProps } from './Card';
56
+ export { Carousel as ElCarousel, CarouselItem as ElCarouselItem } from './Carousel';
57
+ export type { CarouselItemProps, CarouselProps, CarouselRef } from './Carousel';
56
58
  export { Collapse as ElCollapse, CollapseItem as ElCollapseItem } from './Collapse';
57
59
  export type { CollapseItemProps, CollapseProps } from './Collapse';
58
60
  export { Descriptions as ElDescriptions, DescriptionsItem as ElDescriptionsItem } from './Descriptions';
package/dist/index.js CHANGED
@@ -28,6 +28,8 @@ __export(src_exports, {
28
28
  ElBreadcrumbItem: () => import_Breadcrumb.BreadcrumbItem,
29
29
  ElButton: () => import_Button.Button,
30
30
  ElCard: () => import_Card.Card,
31
+ ElCarousel: () => import_Carousel.Carousel,
32
+ ElCarouselItem: () => import_Carousel.CarouselItem,
31
33
  ElCascader: () => import_Cascader.Cascader,
32
34
  ElCheckbox: () => import_Checkbox.Checkbox,
33
35
  ElCheckboxButton: () => import_Checkbox.CheckboxButton,
@@ -125,6 +127,7 @@ var import_Form = require("./Form");
125
127
  var import_Upload = require("./Upload");
126
128
  var import_Badge = require("./Badge");
127
129
  var import_Card = require("./Card");
130
+ var import_Carousel = require("./Carousel");
128
131
  var import_Collapse = require("./Collapse");
129
132
  var import_Descriptions = require("./Descriptions");
130
133
  var import_Pagination = require("./Pagination");
@@ -163,6 +166,8 @@ var import_ConfigProvider = require("./ConfigProvider");
163
166
  ElBreadcrumbItem,
164
167
  ElButton,
165
168
  ElCard,
169
+ ElCarousel,
170
+ ElCarouselItem,
166
171
  ElCascader,
167
172
  ElCheckbox,
168
173
  ElCheckboxButton,