bkui-vue 0.0.1-beta.113 → 0.0.1-beta.114

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/index.esm.js CHANGED
@@ -9022,9 +9022,11 @@ var Component$z = defineComponent({
9022
9022
  name: "Loading",
9023
9023
  props: loadingTypes,
9024
9024
  setup(props, ctx) {
9025
- const dotIndicator = [1, 2, 3, 4].map((i2) => createVNode("span", {
9025
+ const dotIndicator = createVNode("div", {
9026
+ "class": "bk-normal-indicator"
9027
+ }, [[1, 2, 3, 4].map((i2) => createVNode("span", {
9026
9028
  "class": `dot dot-${i2}`
9027
- }, null));
9029
+ }, null))]);
9028
9030
  const spinIndicator = createVNode("div", {
9029
9031
  "class": "bk-spin-indicator"
9030
9032
  }, [[1, 2, 3, 4, 5, 6, 7, 8].map((i2) => createVNode("span", {
@@ -9113,6 +9115,7 @@ var Component$y = defineComponent({
9113
9115
  "is-disabled": props.disabled,
9114
9116
  "is-outline": props.outline,
9115
9117
  "is-text": isText.value,
9118
+ "is-loading": props.loading,
9116
9119
  [`${btnClsPrefix}-${props.size}`]: props.size && btnSizes.includes(props.size),
9117
9120
  "no-slot": !showSlot
9118
9121
  }, `${themeCls} ${btnClsPrefix} ${hoverTheme}`);
@@ -9157,7 +9160,7 @@ var Component$y = defineComponent({
9157
9160
  "mode": props.loadingMode,
9158
9161
  "theme": loadingTheme.value,
9159
9162
  "size": loadingSize.value
9160
- }, null), slots.default && !props.loading && createVNode("span", {
9163
+ }, null), slots.default && createVNode("span", {
9161
9164
  "class": `${btnClsPrefix}-text`
9162
9165
  }, [(_a2 = slots.default) == null ? void 0 : _a2.call(slots)])]);
9163
9166
  };
@@ -9407,10 +9410,13 @@ var Component$x = defineComponent({
9407
9410
  }, [createVNode("span", {
9408
9411
  "class": getCls("prefix-area--text")
9409
9412
  }, [props.prefix])]), isTextArea.value ? createVNode("textarea", mergeProps({
9410
- "ref": inputRef
9413
+ "ref": inputRef,
9414
+ "spellcheck": false
9411
9415
  }, inputAttrs, bindProps.value, {
9412
9416
  "rows": props.rows
9413
- }), null) : createVNode("input", mergeProps(inputAttrs, {
9417
+ }), null) : createVNode("input", mergeProps({
9418
+ "spellcheck": false
9419
+ }, inputAttrs, {
9414
9420
  "ref": inputRef,
9415
9421
  "class": `${inputClsPrefix.value}--text`,
9416
9422
  "type": pwdVisible.value && props.type === "password" ? "text" : props.type,