@scbt-ecom/ui 0.76.2 → 0.77.0
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-F-RYAmDP.js → index-CRB6VnF-.js} +1802 -1800
- package/dist/index-CRB6VnF-.js.map +1 -0
- package/dist/lib/shared/ui/button/model/helpers.d.ts +1 -1
- package/dist/lib/shared/ui/dialog/Dialog.d.ts +6 -0
- package/dist/lib/shared/ui/dialog/index.d.ts +1 -0
- package/dist/lib/shared/ui/formElements/uncontrolled/dayPicker/DayPicker.d.ts +1 -1
- package/dist/lib/shared/ui/formElements/uncontrolled/index.d.ts +3 -3
- package/dist/lib/shared/ui/formElements/uncontrolled/select/Select.d.ts +1 -1
- package/dist/lib/shared/ui/formElements/uncontrolled/select/ui/SelectItem.d.ts +1 -1
- package/dist/lib/shared/ui/formElements/uncontrolled/textarea/Textarea.d.ts +1 -1
- package/dist/lib/shared/ui/icon/allowedIcons.d.ts +2 -1
- package/dist/lib/shared/ui/icon/iconsMap.d.ts +12 -0
- package/dist/lib/shared/ui/icon/sprite.gen.d.ts +1 -0
- package/dist/lib/shared/ui/index.d.ts +1 -0
- package/dist/lib/widgets/banner/Banner.d.ts +1 -0
- package/dist/lib/widgets/benefit/Benefit.d.ts +1 -0
- package/dist/lib/widgets/benefit/index.d.ts +1 -1
- package/dist/lib/widgets/calculator/Calculator.d.ts +1 -0
- package/dist/lib/widgets/dynamicForm/DynamicForm.d.ts +1 -1
- package/dist/lib/widgets/footer/Footer.d.ts +1 -0
- package/dist/lib/widgets/header/Header.d.ts +1 -0
- package/dist/lib/widgets/interLinking/InterLinking.d.ts +1 -0
- package/dist/lib/widgets/longBanner/LongBanner.d.ts +1 -0
- package/dist/lib/widgets/model/helpers.d.ts +12 -12
- package/dist/lib/widgets/model/types.d.ts +6 -7
- package/dist/lib/widgets/seoHeader/SeoHeader.d.ts +1 -0
- package/dist/lib/widgets/stepper/Stepper.d.ts +1 -0
- package/dist/lib/widgets/usefulInfo/UsefulInfo.d.ts +1 -0
- package/dist/sprites/media.svg +1 -0
- package/dist/static/static/media/desktop.svg +3 -0
- package/dist/static/static/media/mobile.svg +4 -0
- package/dist/ui.js +562 -522
- package/dist/ui.js.map +1 -1
- package/dist/widget.js +1889 -1845
- package/dist/widget.js.map +1 -1
- package/package.json +1 -1
- package/dist/index-F-RYAmDP.js.map +0 -1
|
@@ -20,7 +20,7 @@ export declare const buttonPrimitiveIntent: {
|
|
|
20
20
|
export declare const buttonConfig: (props?: ({
|
|
21
21
|
intent?: "primary" | "secondary" | "ghost" | "negative" | null | undefined;
|
|
22
22
|
size?: "md" | "sm" | "lg" | null | undefined;
|
|
23
|
-
textFormat?: "
|
|
23
|
+
textFormat?: "capitalize" | "uppercase" | "lowercase" | "initial" | null | undefined;
|
|
24
24
|
isFull?: boolean | null | undefined;
|
|
25
25
|
isLoading?: boolean | null | undefined;
|
|
26
26
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export interface DialogProps extends React.DialogHTMLAttributes<HTMLDialogElement> {
|
|
3
|
+
title?: string;
|
|
4
|
+
portal?: HTMLElement;
|
|
5
|
+
}
|
|
6
|
+
export declare const Dialog: ({ className, children, title, portal, ...props }: DialogProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Dialog, type DialogProps } from './Dialog';
|
|
@@ -32,7 +32,7 @@ export type DayPickerProps = Omit<MaskInputProps, 'value' | 'onChange' | 'mask'
|
|
|
32
32
|
*/
|
|
33
33
|
externalHandlers?: ExternalHandlers;
|
|
34
34
|
};
|
|
35
|
-
export declare const DayPickerBase: import('react').ForwardRefExoticComponent<Omit<MaskInputProps, "
|
|
35
|
+
export declare const DayPickerBase: import('react').ForwardRefExoticComponent<Omit<MaskInputProps, "classes" | "value" | "onChange" | "mask"> & {
|
|
36
36
|
/**
|
|
37
37
|
* Указывает, открыт ли календарь по умолчанию
|
|
38
38
|
*/
|
|
@@ -43,7 +43,7 @@ export declare const Uncontrolled: {
|
|
|
43
43
|
mask: "datetime" | "email" | "numeric" | "currency" | "decimal" | "integer" | "percentage" | "url" | "ip" | "mac" | "ssn" | "brl-currency" | "cpf" | "cnpj" | (string & {}) | (string[] & {}) | null;
|
|
44
44
|
externalMaskDefinitions?: Record<string, import('./maskInput/MaskInput').Definition>;
|
|
45
45
|
} & import('react').RefAttributes<HTMLInputElement>>;
|
|
46
|
-
SelectBase: import('react').ForwardRefExoticComponent<Omit<import('@headlessui/react').ComboboxProps<import('./select').SelectItemOption, boolean, "li">, "
|
|
46
|
+
SelectBase: import('react').ForwardRefExoticComponent<Omit<import('@headlessui/react').ComboboxProps<import('./select').SelectItemOption, boolean, "li">, "className" | "onChange" | "by" | "multiple" | "virtual"> & {
|
|
47
47
|
label: string;
|
|
48
48
|
isMulti?: boolean | undefined;
|
|
49
49
|
invalid?: boolean;
|
|
@@ -71,7 +71,7 @@ export declare const Uncontrolled: {
|
|
|
71
71
|
onFocus?: (event: React.FocusEvent<HTMLButtonElement>) => void;
|
|
72
72
|
};
|
|
73
73
|
} & import('react').RefAttributes<HTMLButtonElement>>;
|
|
74
|
-
DayPickerBase: import('react').ForwardRefExoticComponent<Omit<import('./maskInput').MaskInputProps, "
|
|
74
|
+
DayPickerBase: import('react').ForwardRefExoticComponent<Omit<import('./maskInput').MaskInputProps, "classes" | "value" | "onChange" | "mask"> & {
|
|
75
75
|
defaultOpen?: boolean;
|
|
76
76
|
value?: string;
|
|
77
77
|
onChange?: (value: string) => void;
|
|
@@ -109,7 +109,7 @@ export declare const Uncontrolled: {
|
|
|
109
109
|
};
|
|
110
110
|
renderComponent?: (props: import('./radio').RadioGroupBaseProps) => React.JSX.Element;
|
|
111
111
|
} & import('react').RefAttributes<HTMLDivElement>>;
|
|
112
|
-
TextareaBase: import('react').ForwardRefExoticComponent<Omit<import('react').TextareaHTMLAttributes<HTMLTextAreaElement>, "
|
|
112
|
+
TextareaBase: import('react').ForwardRefExoticComponent<Omit<import('react').TextareaHTMLAttributes<HTMLTextAreaElement>, "className" | "size"> & {
|
|
113
113
|
classes?: {
|
|
114
114
|
container?: string;
|
|
115
115
|
textarea?: string;
|
|
@@ -81,7 +81,7 @@ export type SelectBaseProps<Multi extends boolean> = Omit<ComboboxProps<SelectIt
|
|
|
81
81
|
*/
|
|
82
82
|
reset?: string;
|
|
83
83
|
};
|
|
84
|
-
export declare const SelectBase: import('react').ForwardRefExoticComponent<Omit<ComboboxProps<SelectItemOption, boolean, "li">, "
|
|
84
|
+
export declare const SelectBase: import('react').ForwardRefExoticComponent<Omit<ComboboxProps<SelectItemOption, boolean, "li">, "className" | "onChange" | "by" | "multiple" | "virtual"> & {
|
|
85
85
|
/**
|
|
86
86
|
* Отображаемый лейбл
|
|
87
87
|
*/
|
|
@@ -15,7 +15,7 @@ export type SelectItemProps = Omit<ComboboxOptionProps, 'className' | 'value'> &
|
|
|
15
15
|
displayValue?: (option: SelectItemOption) => string;
|
|
16
16
|
motionProps?: React.ComponentPropsWithoutRef<typeof motion.li>;
|
|
17
17
|
};
|
|
18
|
-
export declare const SelectItem: React.ForwardRefExoticComponent<Omit<ComboboxOptionProps, "
|
|
18
|
+
export declare const SelectItem: React.ForwardRefExoticComponent<Omit<ComboboxOptionProps, "className" | "value"> & {
|
|
19
19
|
option: SelectItemOption;
|
|
20
20
|
isMulti?: boolean;
|
|
21
21
|
classes?: SelectItemClasses;
|
|
@@ -34,7 +34,7 @@ export type TextareaBaseProps = Omit<React.TextareaHTMLAttributes<HTMLTextAreaEl
|
|
|
34
34
|
*/
|
|
35
35
|
externalHandlers?: ExternalHandlers;
|
|
36
36
|
};
|
|
37
|
-
export declare const TextareaBase: import('react').ForwardRefExoticComponent<Omit<import('react').TextareaHTMLAttributes<HTMLTextAreaElement>, "
|
|
37
|
+
export declare const TextareaBase: import('react').ForwardRefExoticComponent<Omit<import('react').TextareaHTMLAttributes<HTMLTextAreaElement>, "className" | "size"> & {
|
|
38
38
|
/**
|
|
39
39
|
* Дополнительные стили внутренних компонентов
|
|
40
40
|
*/
|
|
@@ -9,8 +9,9 @@ export declare const allowedIcons: {
|
|
|
9
9
|
readonly general: readonly ["general/calendar", "general/check", "general/close", "general/edit", "general/hiddenEye", "general/menu", "general/plus", "general/reorder", "general/search", "general/shield", "general/showEye"];
|
|
10
10
|
readonly info: readonly ["info/helpCircle", "info/warningCircle"];
|
|
11
11
|
readonly logos: readonly ["logos/beeline", "logos/megafon", "logos/mts"];
|
|
12
|
+
readonly media: readonly ["media/desktop", "media/mobile"];
|
|
12
13
|
readonly social: readonly ["social/classmates", "social/telegram", "social/vk"];
|
|
13
14
|
readonly status: readonly ["status/badSmile", "status/iconMark", "status/iconRetry", "status/iconUser"];
|
|
14
15
|
};
|
|
15
|
-
readonly flatten: readonly ["arrows/arrowCircle", "arrows/arrowDownRight", "arrows/arrowLink", "arrows/arrowRight", "arrows/arrowRotate", "arrows/arrowScroll", "brandLogos/logoBlack", "brandLogos/logoBusiness", "brandLogos/logoGray", "brandLogos/logoInsurance", "brandLogos/logoMain", "brandLogos/logoWhite", "communication/phone", "editor/bold", "editor/heading", "editor/italic", "editor/link", "editor/list", "editor/palette", "editor/redo", "editor/removeFormatting", "editor/space", "editor/strikethrough", "editor/typography", "editor/underline", "editor/undo", "files/border", "files/borderError", "files/documentFilled", "files/documentOutline", "files/upload", "general/calendar", "general/check", "general/close", "general/edit", "general/hiddenEye", "general/menu", "general/plus", "general/reorder", "general/search", "general/shield", "general/showEye", "info/helpCircle", "info/warningCircle", "logos/beeline", "logos/megafon", "logos/mts", "social/classmates", "social/telegram", "social/vk", "status/badSmile", "status/iconMark", "status/iconRetry", "status/iconUser"];
|
|
16
|
+
readonly flatten: readonly ["arrows/arrowCircle", "arrows/arrowDownRight", "arrows/arrowLink", "arrows/arrowRight", "arrows/arrowRotate", "arrows/arrowScroll", "brandLogos/logoBlack", "brandLogos/logoBusiness", "brandLogos/logoGray", "brandLogos/logoInsurance", "brandLogos/logoMain", "brandLogos/logoWhite", "communication/phone", "editor/bold", "editor/heading", "editor/italic", "editor/link", "editor/list", "editor/palette", "editor/redo", "editor/removeFormatting", "editor/space", "editor/strikethrough", "editor/typography", "editor/underline", "editor/undo", "files/border", "files/borderError", "files/documentFilled", "files/documentOutline", "files/upload", "general/calendar", "general/check", "general/close", "general/edit", "general/hiddenEye", "general/menu", "general/plus", "general/reorder", "general/search", "general/shield", "general/showEye", "info/helpCircle", "info/warningCircle", "logos/beeline", "logos/megafon", "logos/mts", "media/desktop", "media/mobile", "social/classmates", "social/telegram", "social/vk", "status/badSmile", "status/iconMark", "status/iconRetry", "status/iconUser"];
|
|
16
17
|
};
|
|
@@ -281,6 +281,18 @@ export declare const iconsMap: {
|
|
|
281
281
|
desc?: string;
|
|
282
282
|
descId?: string;
|
|
283
283
|
}>;
|
|
284
|
+
'media/desktop': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
285
|
+
title?: string;
|
|
286
|
+
titleId?: string;
|
|
287
|
+
desc?: string;
|
|
288
|
+
descId?: string;
|
|
289
|
+
}>;
|
|
290
|
+
'media/mobile': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
291
|
+
title?: string;
|
|
292
|
+
titleId?: string;
|
|
293
|
+
desc?: string;
|
|
294
|
+
descId?: string;
|
|
295
|
+
}>;
|
|
284
296
|
'social/classmates': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
285
297
|
title?: string;
|
|
286
298
|
titleId?: string;
|
|
@@ -7,6 +7,7 @@ export interface SpritesMap {
|
|
|
7
7
|
general: 'calendar' | 'check' | 'close' | 'edit' | 'hiddenEye' | 'menu' | 'plus' | 'reorder' | 'search' | 'shield' | 'showEye';
|
|
8
8
|
info: 'helpCircle' | 'warningCircle';
|
|
9
9
|
logos: 'beeline' | 'megafon' | 'mts';
|
|
10
|
+
media: 'desktop' | 'mobile';
|
|
10
11
|
social: 'classmates' | 'telegram' | 'vk';
|
|
11
12
|
status: 'badSmile' | 'iconMark' | 'iconRetry' | 'iconUser';
|
|
12
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './Benefit';
|
|
@@ -38,4 +38,4 @@ export type DynamicFormProps<AType extends ApprovementType, CType extends ChipsT
|
|
|
38
38
|
classes?: DynamicFormClasses;
|
|
39
39
|
};
|
|
40
40
|
export declare const DynamicForm: <AType extends ApprovementType, CType extends ChipsType, PType extends ProgressType>({ fields, title, progress, approvement, chips, submitProps, classes }: DynamicFormProps<AType, CType, PType>) => import("react/jsx-runtime").JSX.Element;
|
|
41
|
-
export
|
|
41
|
+
export default DynamicForm;
|
|
@@ -10,3 +10,4 @@ export interface FooterProps<Enabled extends boolean> {
|
|
|
10
10
|
classes?: FooterClasses;
|
|
11
11
|
}
|
|
12
12
|
export declare const Footer: <Enabled extends boolean>({ socialsLinks, phones, ligal, copyright, classes, details, siteMap }: FooterProps<Enabled>) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default Footer;
|
|
@@ -14,3 +14,4 @@ export interface InterLinkingProps extends InterLinkingRoot {
|
|
|
14
14
|
defaultOpen?: boolean;
|
|
15
15
|
}
|
|
16
16
|
export declare const InterLinking: ({ variant, details, headline, mobileAccordionProps, rootAccordionProps, classes, defaultOpen }: InterLinkingProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export default InterLinking;
|
|
@@ -9,3 +9,4 @@ export interface LongBannerProps<Enabled extends boolean> extends LongBannerConf
|
|
|
9
9
|
classes?: LongBannerClasses;
|
|
10
10
|
}
|
|
11
11
|
export declare const LongBanner: <Enabled extends boolean>({ headline, buttonConfig, intent, details, image, classes }: LongBannerProps<Enabled>) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default LongBanner;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
export type AllowedWidgets = keyof typeof WIDGET_LIST_MAP;
|
|
2
2
|
export declare const WIDGET_LIST_MAP: {
|
|
3
|
-
readonly header: <Type extends import('../header/model/types').HeaderVariantType>(props: import('../header/model/types').HeaderProps<Type>) => import("react/jsx-runtime").JSX.Element
|
|
4
|
-
readonly seoHeader: ({ categories, helpers, phone }: import('..').SeoHeaderProps) => import("react/jsx-runtime").JSX.Element
|
|
5
|
-
readonly banner: ({ variant, ...props }: import('..').BannerProps) => import("react/jsx-runtime").JSX.Element
|
|
6
|
-
readonly calculator: ({ calculators, headline }: import('..').CalculatorProps) => import("react/jsx-runtime").JSX.Element
|
|
7
|
-
readonly form: <AType extends import('../dynamicForm/model').ApprovementType, CType extends import('../dynamicForm/model').ChipsType, PType extends import('../dynamicForm/model').ProgressType>({ fields, title, progress, approvement, chips, submitProps, classes }: import('..').DynamicFormProps<AType, CType, PType>) => import("react/jsx-runtime").JSX.Element
|
|
8
|
-
readonly stepper: ({ headline, details, variant, classes }: import('..').StepperProps) => import("react/jsx-runtime").JSX.Element
|
|
9
|
-
readonly benefit: ({ headline, details, variant, classes }: import('..').BenefitProps) => import("react/jsx-runtime").JSX.Element
|
|
10
|
-
readonly longBanner: <Enabled extends boolean>({ headline, buttonConfig, intent, details, image, classes }: import('..').LongBannerProps<Enabled>) => import("react/jsx-runtime").JSX.Element
|
|
11
|
-
readonly usefulInfo: ({ headline, tabs, classes, accordionsConfig }: import('..').UsefulInfoProps) => import("react/jsx-runtime").JSX.Element | null
|
|
12
|
-
readonly interLinking: ({ variant, details, headline, mobileAccordionProps, rootAccordionProps, classes, defaultOpen }: import('..').InterLinkingProps) => import("react/jsx-runtime").JSX.Element
|
|
13
|
-
readonly footer: <Enabled extends boolean>({ socialsLinks, phones, ligal, copyright, classes, details, siteMap }: import('..').FooterProps<Enabled>) => import("react/jsx-runtime").JSX.Element
|
|
3
|
+
readonly header: import('react').LazyExoticComponent<(<Type extends import('../header/model/types').HeaderVariantType>(props: import('../header/model/types').HeaderProps<Type>) => import("react/jsx-runtime").JSX.Element)>;
|
|
4
|
+
readonly seoHeader: import('react').LazyExoticComponent<({ categories, helpers, phone }: import('..').SeoHeaderProps) => import("react/jsx-runtime").JSX.Element>;
|
|
5
|
+
readonly banner: import('react').LazyExoticComponent<({ variant, ...props }: import('..').BannerProps) => import("react/jsx-runtime").JSX.Element>;
|
|
6
|
+
readonly calculator: import('react').LazyExoticComponent<({ calculators, headline }: import('..').CalculatorProps) => import("react/jsx-runtime").JSX.Element>;
|
|
7
|
+
readonly form: import('react').LazyExoticComponent<(<AType extends import('../dynamicForm/model').ApprovementType, CType extends import('../dynamicForm/model').ChipsType, PType extends import('../dynamicForm/model').ProgressType>({ fields, title, progress, approvement, chips, submitProps, classes }: import('..').DynamicFormProps<AType, CType, PType>) => import("react/jsx-runtime").JSX.Element)>;
|
|
8
|
+
readonly stepper: import('react').LazyExoticComponent<({ headline, details, variant, classes }: import('..').StepperProps) => import("react/jsx-runtime").JSX.Element>;
|
|
9
|
+
readonly benefit: import('react').LazyExoticComponent<({ headline, details, variant, classes }: import('..').BenefitProps) => import("react/jsx-runtime").JSX.Element>;
|
|
10
|
+
readonly longBanner: import('react').LazyExoticComponent<(<Enabled extends boolean>({ headline, buttonConfig, intent, details, image, classes }: import('..').LongBannerProps<Enabled>) => import("react/jsx-runtime").JSX.Element)>;
|
|
11
|
+
readonly usefulInfo: import('react').LazyExoticComponent<({ headline, tabs, classes, accordionsConfig }: import('..').UsefulInfoProps) => import("react/jsx-runtime").JSX.Element | null>;
|
|
12
|
+
readonly interLinking: import('react').LazyExoticComponent<({ variant, details, headline, mobileAccordionProps, rootAccordionProps, classes, defaultOpen }: import('..').InterLinkingProps) => import("react/jsx-runtime").JSX.Element>;
|
|
13
|
+
readonly footer: import('react').LazyExoticComponent<(<Enabled extends boolean>({ socialsLinks, phones, ligal, copyright, classes, details, siteMap }: import('..').FooterProps<Enabled>) => import("react/jsx-runtime").JSX.Element)>;
|
|
14
14
|
};
|
|
15
15
|
export declare const KEYS_OF_WIDGET_LIST: readonly AllowedWidgets[];
|
|
16
16
|
export declare const widgetIds: Record<"form" | "header" | "seoHeader" | "banner" | "calculator" | "stepper" | "benefit" | "longBanner" | "usefulInfo" | "interLinking" | "footer", "form" | "header" | "seoHeader" | "banner" | "calculator" | "stepper" | "benefit" | "longBanner" | "usefulInfo" | "interLinking" | "footer">;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ComponentPropsWithoutRef } from 'react';
|
|
2
|
-
import { WIDGET_LIST_MAP } from './helpers';
|
|
3
|
-
export type AllowedWidgets = keyof typeof WIDGET_LIST_MAP;
|
|
2
|
+
import { AllowedWidgets, WIDGET_LIST_MAP } from './helpers';
|
|
4
3
|
export type WidgetExternalProps = {
|
|
5
4
|
_id: string;
|
|
6
5
|
internalName: string;
|
|
@@ -11,7 +10,7 @@ export type WidgetExternalProps = {
|
|
|
11
10
|
* export type HeaderWidget = ReturnWidgetType['header']
|
|
12
11
|
*/
|
|
13
12
|
export type ReturnWidgetType = {
|
|
14
|
-
[K in
|
|
13
|
+
[K in AllowedWidgets]: ComponentPropsWithoutRef<(typeof WIDGET_LIST_MAP)[K]> & WidgetExternalProps;
|
|
15
14
|
};
|
|
16
15
|
/**
|
|
17
16
|
* Массив кортежей из виджетов
|
|
@@ -22,8 +21,8 @@ export type ReturnWidgetType = {
|
|
|
22
21
|
* ]
|
|
23
22
|
*/
|
|
24
23
|
export type WidgetsListDTO = {
|
|
25
|
-
[K in
|
|
26
|
-
}[
|
|
24
|
+
[K in AllowedWidgets]: [K, ReturnWidgetType[K]];
|
|
25
|
+
}[AllowedWidgets][];
|
|
27
26
|
/**
|
|
28
27
|
* Массив кортежей из id виджетов или null (значение по умолчанию или сброс значения)
|
|
29
28
|
* @example
|
|
@@ -33,5 +32,5 @@ export type WidgetsListDTO = {
|
|
|
33
32
|
* ]
|
|
34
33
|
*/
|
|
35
34
|
export type WidgetsListDTOIds = {
|
|
36
|
-
[K in
|
|
37
|
-
}[
|
|
35
|
+
[K in AllowedWidgets]: [K, string | null];
|
|
36
|
+
}[AllowedWidgets][];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="0" height="0"><symbol xmlns="http://www.w3.org/2000/svg" id="desktop" fill="currentColor" viewBox="0 0 24 24"><path d="M2 5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2h-7v2h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2H4a2 2 0 0 1-2-2V5Zm18 11V5H4v11h16Z"/></symbol><symbol xmlns="http://www.w3.org/2000/svg" id="mobile" fill="currentColor" viewBox="0 0 24 24"><path d="M6 5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V5Zm10 0H8v14h8V5Z"/><path d="M13 17a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"/></symbol></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2 5C2 3.89543 2.89543 3 4 3H20C21.1046 3 22 3.89543 22 5V16C22 17.1046 21.1046 18 20 18H13V20H16C16.5523 20 17 20.4477 17 21C17 21.5523 16.5523 22 16 22H8C7.44772 22 7 21.5523 7 21C7 20.4477 7.44772 20 8 20H11V18H4C2.89543 18 2 17.1046 2 16V5ZM20 16V5H4V16H20Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6 5C6 3.89543 6.89543 3 8 3H16C17.1046 3 18 3.89543 18 5V19C18 20.1046 17.1046 21 16 21H8C6.89543 21 6 20.1046 6 19V5ZM16 5H8V19H16V5Z" fill="currentColor"/>
|
|
3
|
+
<path d="M13 17C13 17.5523 12.5523 18 12 18C11.4477 18 11 17.5523 11 17C11 16.4477 11.4477 16 12 16C12.5523 16 13 16.4477 13 17Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|