startup-ui 0.11.3 → 1.0.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/AGENTS.md +18 -0
- package/CHANGELOG.md +39 -0
- package/CLAUDE.md +1 -0
- package/LICENSE +21 -0
- package/README.md +54 -0
- package/dist/defaults.css +83 -0
- package/dist/index.css +1 -1
- package/dist/startup-ui.cjs.js +28 -587
- package/dist/startup-ui.cjs.js.map +1 -1
- package/dist/startup-ui.es.js +4555 -7451
- package/dist/startup-ui.es.js.map +1 -1
- package/dist/types/components/SActionIcon.d.ts +2 -1
- package/dist/types/components/SActionIcon.d.ts.map +1 -1
- package/dist/types/components/SCanvas.d.ts +0 -1
- package/dist/types/components/SCanvas.d.ts.map +1 -1
- package/dist/types/components/SCheckbox.d.ts.map +1 -1
- package/dist/types/components/SCheckboxGroup.d.ts +4 -0
- package/dist/types/components/SCheckboxGroup.d.ts.map +1 -1
- package/dist/types/components/SColumnSettings.d.ts +4 -4
- package/dist/types/components/SColumnSettings.d.ts.map +1 -1
- package/dist/types/components/SConfirm/SConfirm.d.ts +2 -0
- package/dist/types/components/SConfirm/SConfirm.d.ts.map +1 -1
- package/dist/types/components/SCopyText.d.ts.map +1 -1
- package/dist/types/components/SDatePicker.d.ts +3 -4
- package/dist/types/components/SDatePicker.d.ts.map +1 -1
- package/dist/types/components/SDialog.d.ts.map +1 -1
- package/dist/types/components/SFilterGroup.d.ts +3 -3
- package/dist/types/components/SFilterGroup.d.ts.map +1 -1
- package/dist/types/components/SFooter.d.ts.map +1 -1
- package/dist/types/components/SForm.d.ts.map +1 -1
- package/dist/types/components/SFormRow.d.ts.map +1 -1
- package/dist/types/components/SHtmlEditor.d.ts +20 -0
- package/dist/types/components/SHtmlEditor.d.ts.map +1 -1
- package/dist/types/components/SImagePreview.d.ts.map +1 -1
- package/dist/types/components/SInput.d.ts +9 -2
- package/dist/types/components/SInput.d.ts.map +1 -1
- package/dist/types/components/SMenu.d.ts +39 -0
- package/dist/types/components/SMenu.d.ts.map +1 -0
- package/dist/types/components/SNote.d.ts.map +1 -1
- package/dist/types/components/SPagination.d.ts.map +1 -1
- package/dist/types/components/SProgressbar.d.ts.map +1 -1
- package/dist/types/components/SRadio.d.ts.map +1 -1
- package/dist/types/components/SRadioGroup.d.ts +4 -0
- package/dist/types/components/SRadioGroup.d.ts.map +1 -1
- package/dist/types/components/SSelect.d.ts +6 -0
- package/dist/types/components/SSelect.d.ts.map +1 -1
- package/dist/types/components/SStatus.d.ts.map +1 -1
- package/dist/types/components/STable.d.ts +4 -4
- package/dist/types/components/STable.d.ts.map +1 -1
- package/dist/types/components/SToggle.d.ts.map +1 -1
- package/dist/types/components/STooltip.d.ts +0 -1
- package/dist/types/components/STooltip.d.ts.map +1 -1
- package/dist/types/components/STree.d.ts +11 -5
- package/dist/types/components/STree.d.ts.map +1 -1
- package/dist/types/components/SUpload.d.ts +5 -4
- package/dist/types/components/SUpload.d.ts.map +1 -1
- package/dist/types/components/SVerticalMenu.d.ts.map +1 -1
- package/dist/types/components/htmlEditor/contentStyle.d.ts +9 -0
- package/dist/types/components/htmlEditor/contentStyle.d.ts.map +1 -0
- package/dist/types/components/icons.d.ts +24 -0
- package/dist/types/components/icons.d.ts.map +1 -0
- package/dist/types/config.d.ts +49 -0
- package/dist/types/config.d.ts.map +1 -0
- package/dist/types/global-components.d.ts +3 -6
- package/dist/types/global-components.d.ts.map +1 -1
- package/dist/types/index.d.ts +12 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/locale/index.d.ts +49 -0
- package/dist/types/locale/index.d.ts.map +1 -0
- package/dist/types/locale/messages/en-US.d.ts +4 -0
- package/dist/types/locale/messages/en-US.d.ts.map +1 -0
- package/dist/types/locale/messages/en.d.ts +4 -0
- package/dist/types/locale/messages/en.d.ts.map +1 -0
- package/dist/types/locale/messages/ru.d.ts +4 -0
- package/dist/types/locale/messages/ru.d.ts.map +1 -0
- package/dist/types/locale/types.d.ts +74 -0
- package/dist/types/locale/types.d.ts.map +1 -0
- package/dist/types/plugin.d.ts +2 -1
- package/dist/types/plugin.d.ts.map +1 -1
- package/dist/types/utils/deepMerge.d.ts +9 -0
- package/dist/types/utils/deepMerge.d.ts.map +1 -0
- package/dist/types/utils/options.d.ts +25 -0
- package/dist/types/utils/options.d.ts.map +1 -0
- package/llms/components/data/sfilter.md +194 -0
- package/llms/components/data/spagination.md +114 -0
- package/llms/components/data/stable.md +638 -0
- package/llms/components/data/stree.md +213 -0
- package/llms/components/forms/scheckbox.md +139 -0
- package/llms/components/forms/sdatepicker.md +161 -0
- package/llms/components/forms/sform.md +240 -0
- package/llms/components/forms/shtmleditor.md +143 -0
- package/llms/components/forms/sinput.md +165 -0
- package/llms/components/forms/sradio.md +164 -0
- package/llms/components/forms/sselect.md +149 -0
- package/llms/components/forms/sswitch.md +69 -0
- package/llms/components/forms/supload.md +189 -0
- package/llms/components/interfaces/sactionbar.md +40 -0
- package/llms/components/interfaces/sactionicon.md +126 -0
- package/llms/components/interfaces/salert.md +87 -0
- package/llms/components/interfaces/sbutton.md +167 -0
- package/llms/components/interfaces/scolumnsettings.md +204 -0
- package/llms/components/interfaces/sconfirm.md +57 -0
- package/llms/components/interfaces/scopytext.md +67 -0
- package/llms/components/interfaces/sdashboard.md +130 -0
- package/llms/components/interfaces/sdialog.md +158 -0
- package/llms/components/interfaces/simagepreview.md +98 -0
- package/llms/components/interfaces/snote.md +64 -0
- package/llms/components/interfaces/sprogressbar.md +48 -0
- package/llms/components/interfaces/sstat.md +79 -0
- package/llms/components/interfaces/sstatus.md +76 -0
- package/llms/components/interfaces/stag.md +70 -0
- package/llms/components/interfaces/stimeline.md +47 -0
- package/llms/components/interfaces/stoggle.md +120 -0
- package/llms/components/interfaces/stooltip.md +88 -0
- package/llms/components/template/scanvas.md +61 -0
- package/llms/components/template/smenu.md +88 -0
- package/llms/components/template/sverticalmenu.md +113 -0
- package/llms/llms.txt +49 -0
- package/package.json +56 -21
- package/dist/types/components/SDropdownMenu.d.ts +0 -39
- package/dist/types/components/SDropdownMenu.d.ts.map +0 -1
- package/dist/types/components/SHorizontalMenu.d.ts +0 -33
- package/dist/types/components/SHorizontalMenu.d.ts.map +0 -1
package/llms/llms.txt
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Startup UI
|
|
2
|
+
|
|
3
|
+
> Vue 3 UI component library for IT startups (great with Laravel + InertiaJS). Every component is prefixed with `S` (SButton, SInput, …) and strictly typed — read prop/emit/slot types from the .d.ts. FontAwesome and InertiaJS are optional, injected once via app.use(StartupUI, { icon, router, link }). Component docs below are written in Russian; the default runtime locale is English (switchable via configureStartupUi).
|
|
4
|
+
|
|
5
|
+
## Forms
|
|
6
|
+
|
|
7
|
+
- [SCheckboxGroup, SCheckbox](./components/forms/scheckbox.md): Одиночная галочка или набор галочек.
|
|
8
|
+
- [SDatePicker](./components/forms/sdatepicker.md): Поле выбора даты.
|
|
9
|
+
- [SForm, SFormRow](./components/forms/sform.md): SForm и SFormRow позволяют быстро собирать функциональные формы.
|
|
10
|
+
- [SHtmlEditor](./components/forms/shtmleditor.md): Визуальный HTML-редактор.
|
|
11
|
+
- [SInput](./components/forms/sinput.md): Базовые поля ввода.
|
|
12
|
+
- [SRadioGroup, SRadio](./components/forms/sradio.md): Радио-кнопки.
|
|
13
|
+
- [SSelect](./components/forms/sselect.md): Выпадающий список с вариантами выбора.
|
|
14
|
+
- [SSwitch](./components/forms/sswitch.md): Включатель-выключатель.
|
|
15
|
+
- [SUpload](./components/forms/supload.md): Загрузка файла. Всегда вставляется внутри некой формы, не используется в отрыве от неё.
|
|
16
|
+
|
|
17
|
+
## Data
|
|
18
|
+
|
|
19
|
+
- [SFilterGroup, SFilter](./components/data/sfilter.md): Фильтры.
|
|
20
|
+
- [SPagination](./components/data/spagination.md): Постраничная навигация.
|
|
21
|
+
- [STable](./components/data/stable.md): Таблица.
|
|
22
|
+
- [STree](./components/data/stree.md): Дерево элементов.
|
|
23
|
+
|
|
24
|
+
## Interfaces
|
|
25
|
+
|
|
26
|
+
- [SActionBar](./components/interfaces/sactionbar.md): Полоска действия (обычно, для выбранных элементов).
|
|
27
|
+
- [SActionIcon](./components/interfaces/sactionicon.md): Иконка действия (чаще всего используется в таблицах).
|
|
28
|
+
- [SAlert](./components/interfaces/salert.md): Оповещение о произошедшем событии.
|
|
29
|
+
- [SButton](./components/interfaces/sbutton.md): Кнопка.
|
|
30
|
+
- [SColumnSettings](./components/interfaces/scolumnsettings.md): Включение/выключение колонок в таблице.
|
|
31
|
+
- [SConfirm](./components/interfaces/sconfirm.md): Диалоговое окно подтверждения действия.
|
|
32
|
+
- [SCopyText](./components/interfaces/scopytext.md): Копируемый текст.
|
|
33
|
+
- [SDashboard, SDashboardItem](./components/interfaces/sdashboard.md): Дешборд блоков (как правило, удобно использовать для отчетов).
|
|
34
|
+
- [SDialog](./components/interfaces/sdialog.md): Диалоговое окно.
|
|
35
|
+
- [SImagePreview](./components/interfaces/simagepreview.md): Картинка, которую можно посмотреть более детально в диалоговом окне.
|
|
36
|
+
- [SNote](./components/interfaces/snote.md): Текстовая заметка.
|
|
37
|
+
- [SProgressBar](./components/interfaces/sprogressbar.md): Полоска прогресса.
|
|
38
|
+
- [SStat](./components/interfaces/sstat.md): Строка статистики, выровненная по заголовкам.
|
|
39
|
+
- [SStatus](./components/interfaces/sstatus.md): Текстовый статус (как правило с иконкой).
|
|
40
|
+
- [STag](./components/interfaces/stag.md): Тег (может также использоваться как отображение статуса).
|
|
41
|
+
- [STimeline](./components/interfaces/stimeline.md): Вертикальная черта с точками-пунктами.
|
|
42
|
+
- [SToggleGroup, SToggle](./components/interfaces/stoggle.md): Открывающийся-закрывающийся блок.
|
|
43
|
+
- [STooltip](./components/interfaces/stooltip.md): Иконка вопроса со всплывающей подсказкой.
|
|
44
|
+
|
|
45
|
+
## Layout & template
|
|
46
|
+
|
|
47
|
+
- [SCanvas, SFooter](./components/template/scanvas.md): Общий шаблон страницы.
|
|
48
|
+
- [SMenu](./components/template/smenu.md): Горизонтальное меню с выпадающими подменю. Подходит для шапки (`header`) и подшапки (`subheader`) — объединяет в одном компоненте плоскую навигацию и дропдауны.
|
|
49
|
+
- [SVerticalMenu](./components/template/sverticalmenu.md): Боковое меню.
|
package/package.json
CHANGED
|
@@ -1,7 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "startup-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Vue3 UI components for IT startups. Best served with Laravel + InertiaJS",
|
|
5
|
+
"author": "Ruslan Sukhar <ruslan@sukhar.info>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://startup-ui.ru",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/rsukhar/startup-ui.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/rsukhar/startup-ui/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"vue",
|
|
17
|
+
"vue3",
|
|
18
|
+
"ui",
|
|
19
|
+
"components",
|
|
20
|
+
"component-library",
|
|
21
|
+
"design-system",
|
|
22
|
+
"laravel",
|
|
23
|
+
"inertiajs",
|
|
24
|
+
"startup"
|
|
25
|
+
],
|
|
5
26
|
"type": "module",
|
|
6
27
|
"main": "dist/startup-ui.cjs.js",
|
|
7
28
|
"module": "dist/startup-ui.es.js",
|
|
@@ -12,42 +33,56 @@
|
|
|
12
33
|
"import": "./dist/startup-ui.es.js",
|
|
13
34
|
"require": "./dist/startup-ui.cjs.js"
|
|
14
35
|
},
|
|
15
|
-
"./dist/index.css": "./dist/index.css"
|
|
36
|
+
"./dist/index.css": "./dist/index.css",
|
|
37
|
+
"./defaults.css": "./dist/defaults.css"
|
|
16
38
|
},
|
|
17
39
|
"files": [
|
|
18
|
-
"dist"
|
|
40
|
+
"dist",
|
|
41
|
+
"llms",
|
|
42
|
+
"AGENTS.md",
|
|
43
|
+
"CLAUDE.md",
|
|
44
|
+
"CHANGELOG.md"
|
|
19
45
|
],
|
|
20
46
|
"sideEffects": [
|
|
21
47
|
"**/*.css",
|
|
22
48
|
"**/*.scss"
|
|
23
49
|
],
|
|
24
50
|
"peerDependencies": {
|
|
25
|
-
"@inertiajs/vue3": "^
|
|
26
|
-
"@vueuse/core": "^
|
|
27
|
-
"vue": "^3.5.
|
|
51
|
+
"@inertiajs/vue3": "^2.0.0 || ^3.0.0",
|
|
52
|
+
"@vueuse/core": "^14.0.0",
|
|
53
|
+
"vue": "^3.5.0"
|
|
54
|
+
},
|
|
55
|
+
"peerDependenciesMeta": {
|
|
56
|
+
"@inertiajs/vue3": {
|
|
57
|
+
"optional": true
|
|
58
|
+
}
|
|
28
59
|
},
|
|
29
60
|
"devDependencies": {
|
|
30
|
-
"@fortawesome/vue-fontawesome": "^3.0
|
|
31
|
-
"@inertiajs/vue3": "^
|
|
32
|
-
"@types/node": "^
|
|
33
|
-
"@
|
|
34
|
-
"@
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"vite
|
|
40
|
-
"
|
|
41
|
-
"vue
|
|
61
|
+
"@fortawesome/vue-fontawesome": "^3.2.0",
|
|
62
|
+
"@inertiajs/vue3": "^3.2.0",
|
|
63
|
+
"@types/node": "^25.9.1",
|
|
64
|
+
"@types/sortablejs": "^1.15.9",
|
|
65
|
+
"@vitejs/plugin-vue": "^6.0.7",
|
|
66
|
+
"@vueuse/core": "^14.3.0",
|
|
67
|
+
"dayjs": "^1.11.21",
|
|
68
|
+
"sass-embedded": "^1.100.0",
|
|
69
|
+
"typescript": "^6.0.3",
|
|
70
|
+
"vite": "^8.0.14",
|
|
71
|
+
"vite-plugin-dts": "^4.5.4",
|
|
72
|
+
"vue": "^3.5.34",
|
|
73
|
+
"vue-tsc": "^3.3.2"
|
|
42
74
|
},
|
|
43
75
|
"scripts": {
|
|
76
|
+
"gen:llm": "node ../../scripts/gen-llm-docs.mjs",
|
|
77
|
+
"prebuild": "npm run gen:llm",
|
|
44
78
|
"build": "vite build",
|
|
79
|
+
"prepublishOnly": "npm run build",
|
|
45
80
|
"typecheck": "vue-tsc --noEmit",
|
|
46
81
|
"dev": "vite"
|
|
47
82
|
},
|
|
48
|
-
"license": "MIT",
|
|
49
83
|
"dependencies": {
|
|
50
|
-
"@vueuse/integrations": "^14.
|
|
51
|
-
"
|
|
84
|
+
"@vueuse/integrations": "^14.3.0",
|
|
85
|
+
"axios": "^1.16.1",
|
|
86
|
+
"sortablejs": "^1.15.7"
|
|
52
87
|
}
|
|
53
88
|
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
export interface SDropdownMenuLink {
|
|
2
|
-
label: string;
|
|
3
|
-
url?: string;
|
|
4
|
-
active?: boolean;
|
|
5
|
-
}
|
|
6
|
-
export interface SDropdownMenuProps {
|
|
7
|
-
links?: SDropdownMenuLink[];
|
|
8
|
-
placeholder?: string;
|
|
9
|
-
label?: string;
|
|
10
|
-
labelLink?: string;
|
|
11
|
-
}
|
|
12
|
-
declare function __VLS_template(): {
|
|
13
|
-
attrs: Partial<{}>;
|
|
14
|
-
slots: {
|
|
15
|
-
label?(_: {}): any;
|
|
16
|
-
default?(_: {}): any;
|
|
17
|
-
};
|
|
18
|
-
refs: {
|
|
19
|
-
$container: HTMLDivElement;
|
|
20
|
-
$list: HTMLDivElement;
|
|
21
|
-
};
|
|
22
|
-
rootEl: HTMLDivElement;
|
|
23
|
-
};
|
|
24
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
25
|
-
declare const __VLS_component: import('vue').DefineComponent<SDropdownMenuProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SDropdownMenuProps> & Readonly<{}>, {
|
|
26
|
-
placeholder: string;
|
|
27
|
-
links: SDropdownMenuLink[];
|
|
28
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
29
|
-
$container: HTMLDivElement;
|
|
30
|
-
$list: HTMLDivElement;
|
|
31
|
-
}, HTMLDivElement>;
|
|
32
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
33
|
-
export default _default;
|
|
34
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
35
|
-
new (): {
|
|
36
|
-
$slots: S;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
//# sourceMappingURL=SDropdownMenu.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SDropdownMenu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SDropdownMenu.vue"],"names":[],"mappings":"AAeA;AAoKA,MAAM,WAAW,iBAAiB;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,kBAAkB;IAE/B,KAAK,CAAC,EAAE,iBAAiB,EAAE,CAAC;IAE5B,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AA2CD,iBAAS,cAAc;WA0FT,OAAO,IAA6B;;uBAbvB,GAAG;yBACA,GAAG;;;;;;;EAiBhC;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;iBAjKH,MAAM;WAFZ,iBAAiB,EAAE;;;;kBA4K7B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
export interface SHorizontalMenuLink {
|
|
2
|
-
label: string;
|
|
3
|
-
url?: string;
|
|
4
|
-
active?: boolean;
|
|
5
|
-
stat?: string | number;
|
|
6
|
-
className?: string;
|
|
7
|
-
children?: SHorizontalMenuLink[];
|
|
8
|
-
}
|
|
9
|
-
export interface SHorizontalMenuProps {
|
|
10
|
-
links?: SHorizontalMenuLink[];
|
|
11
|
-
}
|
|
12
|
-
declare function __VLS_template(): {
|
|
13
|
-
attrs: Partial<{}>;
|
|
14
|
-
slots: {
|
|
15
|
-
items?(_: {
|
|
16
|
-
link: SHorizontalMenuLink;
|
|
17
|
-
}): any;
|
|
18
|
-
};
|
|
19
|
-
refs: {};
|
|
20
|
-
rootEl: HTMLDivElement;
|
|
21
|
-
};
|
|
22
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
23
|
-
declare const __VLS_component: import('vue').DefineComponent<SHorizontalMenuProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SHorizontalMenuProps> & Readonly<{}>, {
|
|
24
|
-
links: SHorizontalMenuLink[];
|
|
25
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
26
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
|
-
export default _default;
|
|
28
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
29
|
-
new (): {
|
|
30
|
-
$slots: S;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
//# sourceMappingURL=SHorizontalMenu.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SHorizontalMenu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SHorizontalMenu.vue"],"names":[],"mappings":"AAeA;AAmGA,MAAM,WAAW,mBAAmB;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,mBAAmB,EAAE,CAAC;CACpC;AAED,MAAM,WAAW,oBAAoB;IAEjC,KAAK,CAAC,EAAE,mBAAmB,EAAE,CAAC;CACjC;AAgBD,iBAAS,cAAc;WA0ET,OAAO,IAA6B;;;;YAVvB,GAAG;;;;EAe7B;AAUD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;WA3GT,mBAAmB,EAAE;wFAmH/B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|