@snabcentr/client-ui 1.6.1 → 1.6.3
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.
Potentially problematic release.
This version of @snabcentr/client-ui might be problematic. Click here for more details.
- package/esm2020/form-fields/suggestion-field/sc-suggestion-field.component.mjs +16 -7
- package/esm2020/qrcode/qrcode-dialog/sc-qrcode-dialog.component.mjs +12 -5
- package/fesm2015/snabcentr-client-ui.mjs +26 -11
- package/fesm2015/snabcentr-client-ui.mjs.map +1 -1
- package/fesm2020/snabcentr-client-ui.mjs +25 -10
- package/fesm2020/snabcentr-client-ui.mjs.map +1 -1
- package/form-fields/suggestion-field/sc-suggestion-field.component.d.ts +4 -0
- package/package.json +1 -1
- package/qrcode/qrcode-dialog/sc-qrcode-dialog.component.d.ts +4 -0
- package/styles/tailwind/tailwind.scss +1 -1
@@ -29,6 +29,10 @@ export declare class ScSuggestionFieldComponent implements OnInit {
|
|
29
29
|
* Перечисление типов подсказок.
|
30
30
|
*/
|
31
31
|
readonly suggestionType: typeof ScISuggestionType;
|
32
|
+
/**
|
33
|
+
* Компонент обёртка выпадающего списка.
|
34
|
+
*/
|
35
|
+
private readonly host;
|
32
36
|
/**
|
33
37
|
* Инициализирует экземпляр класса {@link ScSuggestionFieldComponent}.
|
34
38
|
*
|
package/package.json
CHANGED
@@ -10,6 +10,10 @@ export declare class ScQRCodeDialogComponent {
|
|
10
10
|
qrdata: string;
|
11
11
|
}>;
|
12
12
|
readonly terminal: ScITerminalProvider;
|
13
|
+
/**
|
14
|
+
* Свойство, от которого зависит наличие атрибута `data-terminal-view` у `:host` компонента.
|
15
|
+
*/
|
16
|
+
private terminalView;
|
13
17
|
/**
|
14
18
|
* Инициализирует экземпляр класса {@link ScQRCodeDialogComponent}.
|
15
19
|
*
|