@retailcrm/embed-ui-v1-components 0.9.3 → 0.9.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.
- package/dist/host.cjs +18 -1
- package/dist/host.d.ts +2 -0
- package/dist/host.js +18 -1
- package/dist/remote.d.ts +2 -0
- package/package.json +1 -1
package/dist/host.cjs
CHANGED
|
@@ -5064,6 +5064,9 @@ const _hoisted_7 = {
|
|
|
5064
5064
|
class: "ui-v1-modal-sidebar__footer"
|
|
5065
5065
|
};
|
|
5066
5066
|
const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
5067
|
+
...{
|
|
5068
|
+
inheritAttrs: false
|
|
5069
|
+
},
|
|
5067
5070
|
__name: "UiModalSidebar",
|
|
5068
5071
|
props: {
|
|
5069
5072
|
/** Атрибут id корневого элемента. Должен быть уникальным на странице */
|
|
@@ -6461,7 +6464,7 @@ const _hoisted_2 = {
|
|
|
6461
6464
|
class: "ui-v1-textbox__prefix"
|
|
6462
6465
|
};
|
|
6463
6466
|
const _hoisted_3 = ["id", "type", "value", "max", "min", "step", "aria-invalid", "autocomplete", "inputmode", "maxlength", "placeholder", "readonly", "required", "disabled"];
|
|
6464
|
-
const _hoisted_4 = ["id", "value", "aria-invalid", "autocomplete", "inputmode", "maxlength", "placeholder", "readonly", "required", "disabled"];
|
|
6467
|
+
const _hoisted_4 = ["id", "value", "aria-invalid", "autocomplete", "inputmode", "maxlength", "placeholder", "rows", "cols", "readonly", "required", "disabled"];
|
|
6465
6468
|
const _hoisted_5 = {
|
|
6466
6469
|
key: 4,
|
|
6467
6470
|
class: "ui-v1-textbox__eraser"
|
|
@@ -6595,6 +6598,18 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6595
6598
|
type: Boolean,
|
|
6596
6599
|
default: false
|
|
6597
6600
|
},
|
|
6601
|
+
/** Нативный атрибут HTMLTextAreaElement */
|
|
6602
|
+
rows: {
|
|
6603
|
+
type: [Number, String],
|
|
6604
|
+
validator: (value) => !isNaN(Number(value)),
|
|
6605
|
+
default: 2
|
|
6606
|
+
},
|
|
6607
|
+
/** Нативный атрибут HTMLTextAreaElement */
|
|
6608
|
+
cols: {
|
|
6609
|
+
type: [Number, String],
|
|
6610
|
+
validator: (value) => !isNaN(Number(value)),
|
|
6611
|
+
default: 20
|
|
6612
|
+
},
|
|
6598
6613
|
/** Стиль поля – с рамкой или без */
|
|
6599
6614
|
outlined: {
|
|
6600
6615
|
type: Boolean,
|
|
@@ -6867,6 +6882,8 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6867
6882
|
inputmode: resolvedInputmode.value,
|
|
6868
6883
|
maxlength: __props.maxlength,
|
|
6869
6884
|
placeholder: __props.placeholder,
|
|
6885
|
+
rows: __props.rows,
|
|
6886
|
+
cols: __props.cols,
|
|
6870
6887
|
readonly: __props.readonly,
|
|
6871
6888
|
required: __props.required,
|
|
6872
6889
|
disabled: __props.disabled,
|
package/dist/host.d.ts
CHANGED
package/dist/host.js
CHANGED
|
@@ -5062,6 +5062,9 @@ const _hoisted_7 = {
|
|
|
5062
5062
|
class: "ui-v1-modal-sidebar__footer"
|
|
5063
5063
|
};
|
|
5064
5064
|
const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
5065
|
+
...{
|
|
5066
|
+
inheritAttrs: false
|
|
5067
|
+
},
|
|
5065
5068
|
__name: "UiModalSidebar",
|
|
5066
5069
|
props: {
|
|
5067
5070
|
/** Атрибут id корневого элемента. Должен быть уникальным на странице */
|
|
@@ -6459,7 +6462,7 @@ const _hoisted_2 = {
|
|
|
6459
6462
|
class: "ui-v1-textbox__prefix"
|
|
6460
6463
|
};
|
|
6461
6464
|
const _hoisted_3 = ["id", "type", "value", "max", "min", "step", "aria-invalid", "autocomplete", "inputmode", "maxlength", "placeholder", "readonly", "required", "disabled"];
|
|
6462
|
-
const _hoisted_4 = ["id", "value", "aria-invalid", "autocomplete", "inputmode", "maxlength", "placeholder", "readonly", "required", "disabled"];
|
|
6465
|
+
const _hoisted_4 = ["id", "value", "aria-invalid", "autocomplete", "inputmode", "maxlength", "placeholder", "rows", "cols", "readonly", "required", "disabled"];
|
|
6463
6466
|
const _hoisted_5 = {
|
|
6464
6467
|
key: 4,
|
|
6465
6468
|
class: "ui-v1-textbox__eraser"
|
|
@@ -6593,6 +6596,18 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
6593
6596
|
type: Boolean,
|
|
6594
6597
|
default: false
|
|
6595
6598
|
},
|
|
6599
|
+
/** Нативный атрибут HTMLTextAreaElement */
|
|
6600
|
+
rows: {
|
|
6601
|
+
type: [Number, String],
|
|
6602
|
+
validator: (value) => !isNaN(Number(value)),
|
|
6603
|
+
default: 2
|
|
6604
|
+
},
|
|
6605
|
+
/** Нативный атрибут HTMLTextAreaElement */
|
|
6606
|
+
cols: {
|
|
6607
|
+
type: [Number, String],
|
|
6608
|
+
validator: (value) => !isNaN(Number(value)),
|
|
6609
|
+
default: 20
|
|
6610
|
+
},
|
|
6596
6611
|
/** Стиль поля – с рамкой или без */
|
|
6597
6612
|
outlined: {
|
|
6598
6613
|
type: Boolean,
|
|
@@ -6865,6 +6880,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
6865
6880
|
inputmode: resolvedInputmode.value,
|
|
6866
6881
|
maxlength: __props.maxlength,
|
|
6867
6882
|
placeholder: __props.placeholder,
|
|
6883
|
+
rows: __props.rows,
|
|
6884
|
+
cols: __props.cols,
|
|
6868
6885
|
readonly: __props.readonly,
|
|
6869
6886
|
required: __props.required,
|
|
6870
6887
|
disabled: __props.disabled,
|
package/dist/remote.d.ts
CHANGED
package/package.json
CHANGED