@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 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
@@ -692,6 +692,8 @@ declare type UiTextboxProperties = {
692
692
  disabled?: boolean;
693
693
  invalid?: boolean;
694
694
  multiline?: boolean;
695
+ rows?: number | `${number}`;
696
+ cols?: number | `${number}`;
695
697
  outlined?: boolean;
696
698
  };
697
699
 
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
@@ -1393,6 +1393,8 @@ declare type UiTextboxProperties = {
1393
1393
  disabled?: boolean;
1394
1394
  invalid?: boolean;
1395
1395
  multiline?: boolean;
1396
+ rows?: number | `${number}`;
1397
+ cols?: number | `${number}`;
1396
1398
  outlined?: boolean;
1397
1399
  };
1398
1400
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@retailcrm/embed-ui-v1-components",
3
3
  "type": "module",
4
- "version": "0.9.3",
4
+ "version": "0.9.5",
5
5
  "license": "MIT",
6
6
  "author": "RetailDriverLLC <integration@retailcrm.ru>",
7
7
  "repository": "git@github.com:retailcrm/embed-ui.git",