@uzum-tech/ui 0.1.1 → 0.1.2
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.js +18 -24
- package/dist/index.prod.js +1 -1
- package/es/_internal/icons/ChevronDownOutline.d.ts +2 -0
- package/es/_internal/icons/ChevronDownOutline.js +8 -0
- package/es/_internal/icons/index.d.ts +1 -0
- package/es/_internal/icons/index.js +1 -0
- package/es/_internal/icons/replaceable.js +1 -1
- package/es/_mixins/use-theme.js +1 -1
- package/es/anchor/src/BaseAnchor.js +1 -1
- package/es/carousel/src/CarouselItem.js +1 -1
- package/es/config-provider/src/ConfigProvider.js +1 -1
- package/es/data-table/src/TableParts/Cell.js +1 -1
- package/es/date-picker/src/panel/panelMonth.js +1 -1
- package/es/date-picker/src/panel/panelYear.js +1 -1
- package/es/element/src/Element.js +1 -1
- package/es/form/src/FormItem.js +1 -1
- package/es/form/src/utils.js +1 -1
- package/es/global-style/src/GlobalStyle.js +1 -1
- package/es/image/src/ImagePreview.js +1 -1
- package/es/locales/utils/index.js +1 -1
- package/es/log/src/Log.js +1 -1
- package/es/number-animation/src/NumberAnimation.js +1 -1
- package/es/popover/src/styles/index.cssr.js +1 -1
- package/es/tabs/src/Tabs.js +1 -1
- package/es/theme-editor/src/ThemeEditor.js +1 -1
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_internal/icons/ChevronDownOutline.d.ts +2 -0
- package/lib/_internal/icons/ChevronDownOutline.js +10 -0
- package/lib/_internal/icons/index.d.ts +1 -0
- package/lib/_internal/icons/index.js +3 -1
- package/lib/date-picker/src/panel/panelMonth.js +2 -2
- package/lib/date-picker/src/panel/panelYear.js +2 -2
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +1 -1
package/dist/index.js
CHANGED
|
@@ -34201,6 +34201,23 @@
|
|
|
34201
34201
|
}
|
|
34202
34202
|
});
|
|
34203
34203
|
|
|
34204
|
+
var ChevronDownOutline = vue.defineComponent({
|
|
34205
|
+
name: "ChevronDownOutline",
|
|
34206
|
+
render() {
|
|
34207
|
+
return /* @__PURE__ */ vue.h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512" }, /* @__PURE__ */ vue.h(
|
|
34208
|
+
"path",
|
|
34209
|
+
{
|
|
34210
|
+
fill: "none",
|
|
34211
|
+
stroke: "currentColor",
|
|
34212
|
+
"stroke-linecap": "round",
|
|
34213
|
+
"stroke-linejoin": "round",
|
|
34214
|
+
"stroke-width": "48",
|
|
34215
|
+
d: "M112 184l144 144 144-144"
|
|
34216
|
+
}
|
|
34217
|
+
));
|
|
34218
|
+
}
|
|
34219
|
+
});
|
|
34220
|
+
|
|
34204
34221
|
var ErrorIcon$1 = replaceable(
|
|
34205
34222
|
"close",
|
|
34206
34223
|
/* @__PURE__ */ vue.h(
|
|
@@ -72789,29 +72806,6 @@
|
|
|
72789
72806
|
}
|
|
72790
72807
|
});
|
|
72791
72808
|
|
|
72792
|
-
const _hoisted_1 = {
|
|
72793
|
-
xmlns: 'http://www.w3.org/2000/svg',
|
|
72794
|
-
'xmlns:xlink': 'http://www.w3.org/1999/xlink',
|
|
72795
|
-
viewBox: '0 0 512 512'
|
|
72796
|
-
};
|
|
72797
|
-
const _hoisted_2 = /*#__PURE__*/vue.createElementVNode('path', {
|
|
72798
|
-
fill: 'none',
|
|
72799
|
-
stroke: 'currentColor',
|
|
72800
|
-
'stroke-linecap': 'round',
|
|
72801
|
-
'stroke-linejoin': 'round',
|
|
72802
|
-
'stroke-width': '48',
|
|
72803
|
-
d: 'M112 184l144 144l144-144'
|
|
72804
|
-
}, null, -1
|
|
72805
|
-
/* HOISTED */);
|
|
72806
|
-
|
|
72807
|
-
const _hoisted_3 = [_hoisted_2];
|
|
72808
|
-
var ChevronDownOutline = vue.defineComponent({
|
|
72809
|
-
name: 'ChevronDownOutline',
|
|
72810
|
-
render: function render(_ctx, _cache) {
|
|
72811
|
-
return vue.openBlock(), vue.createElementBlock('svg', _hoisted_1, _hoisted_3);
|
|
72812
|
-
}
|
|
72813
|
-
});
|
|
72814
|
-
|
|
72815
72809
|
var PanelMonth = vue.defineComponent({
|
|
72816
72810
|
props: {
|
|
72817
72811
|
panelActive: Boolean,
|
|
@@ -106152,7 +106146,7 @@
|
|
|
106152
106146
|
watermarkProps: watermarkProps
|
|
106153
106147
|
});
|
|
106154
106148
|
|
|
106155
|
-
var version = "0.1.
|
|
106149
|
+
var version = "0.1.2";
|
|
106156
106150
|
|
|
106157
106151
|
function create({
|
|
106158
106152
|
componentPrefix = "U",
|