@albank/vue-ui-kit 1.2.0 → 2.0.0-mr.126-devops-90
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/README.md +27 -20
- package/dist/aeb-ui-kit.cjs +2 -2
- package/dist/aeb-ui-kit.js +4667 -4694
- package/dist/aeb-ui-kit.umd.cjs +2 -2
- package/dist/components/Accordion/Accordion.vue.d.ts +6 -6
- package/dist/components/ActionBar/ActionBar.vue.d.ts +11 -8
- package/dist/components/Button/Button.vue.d.ts +12 -0
- package/dist/components/Checkbox/Checkbox.vue.d.ts +32 -29
- package/dist/components/CodeInput/CodeInput.vue.d.ts +10 -0
- package/dist/components/CreditItemCard/CreditItemCard.vue.d.ts +9 -6
- package/dist/components/DatePicker/DatePicker.vue.d.ts +1 -1
- package/dist/components/Dropdown/Dropdown.vue.d.ts +38 -33
- package/dist/components/FilterTags/FilterTag/FilterTag.vue.d.ts +15 -8
- package/dist/components/FilterTags/FilterTags.vue.d.ts +17 -11
- package/dist/components/Footer/Footer.types.d.ts +2 -2
- package/dist/components/Footer/Footer.vue.d.ts +1 -3
- package/dist/components/Footer/FooterBottom/FooterBottom.vue.d.ts +7 -7
- package/dist/components/Footer/FooterMenu/FooterMenu.vue.d.ts +8 -8
- package/dist/components/Footer/FooterTop/FooterTop.vue.d.ts +7 -6
- package/dist/components/FormField/FormField.vue.d.ts +22 -12
- package/dist/components/FormField/Input.vue.d.ts +9 -7
- package/dist/components/FormField/Textarea.vue.d.ts +9 -7
- package/dist/components/Header/Header.vue.d.ts +10 -4
- package/dist/components/Header/Logo/Logo.vue.d.ts +3 -1
- package/dist/components/Heading/Breadcrumbs/Breadcrumbs.vue.d.ts +14 -7
- package/dist/components/Heading/Heading.vue.d.ts +6 -3
- package/dist/components/Heading/ProductTitle/ProductTitle.vue.d.ts +9 -5
- package/dist/components/Label/Label.vue.d.ts +3 -1
- package/dist/components/Modal/Modal.vue.d.ts +43 -31
- package/dist/components/NewsCard/NewsCard.vue.d.ts +6 -3
- package/dist/components/Notifications/Notifications.vue.d.ts +9 -8
- package/dist/components/Pagination/Pagination.vue.d.ts +1 -1
- package/dist/components/RadioButtons/RadioButtons.vue.d.ts +41 -24
- package/dist/components/Response/Response.vue.d.ts +27 -14
- package/dist/components/Search/Search.vue.d.ts +29 -25
- package/dist/components/Select/Select.vue.d.ts +32 -27
- package/dist/components/Sidebar/Sidebar.vue.d.ts +21 -15
- package/dist/components/Slider/Slider.vue.d.ts +40 -30
- package/dist/components/Spinner/Spinner.vue.d.ts +3 -1
- package/dist/components/Stepper/Stepper.vue.d.ts +12 -11
- package/dist/components/Stepper/StepperStep.vue.d.ts +10 -4
- package/dist/components/Table/Table.vue.d.ts +14 -14
- package/dist/components/TagTab/TagTab.vue.d.ts +14 -5
- package/dist/components/Tooltip/Tooltip.vue.d.ts +23 -21
- package/dist/components/Tooltip/TooltipComponent.vue.d.ts +10 -4
- package/dist/main.d.ts +2 -2
- package/dist/style.css +1 -1
- package/package.json +1 -85
package/README.md
CHANGED
|
@@ -1,20 +1,27 @@
|
|
|
1
|
-
# AebUiKitVue
|
|
2
|
-
|
|
3
|
-
Инструкция
|
|
4
|
-
|
|
5
|
-
1.
|
|
6
|
-
2.
|
|
7
|
-
3. http://localhost:6006/
|
|
8
|
-
|
|
9
|
-
Инструкция
|
|
10
|
-
|
|
11
|
-
1.
|
|
12
|
-
2.
|
|
13
|
-
|
|
14
|
-
Инструкция по использованию в проекте:
|
|
15
|
-
|
|
16
|
-
1. `
|
|
17
|
-
2. Импортировать стили `import '@albank/vue-ui-kit/style.css';` в `main.ts`
|
|
18
|
-
3. Импортировать какой-нибудь компонент в приложении `import { Button } from @albank/vue-ui-kit`
|
|
19
|
-
4. Использовать его `<Button>Сохранить<Button>`
|
|
20
|
-
5. Запустить проект (например, `npm
|
|
1
|
+
# AebUiKitVue
|
|
2
|
+
|
|
3
|
+
Инструкция по разработке:
|
|
4
|
+
|
|
5
|
+
1. npm ci
|
|
6
|
+
2. npm run storybook
|
|
7
|
+
3. http://localhost:6006/
|
|
8
|
+
|
|
9
|
+
Инструкция по сборке и публикации:
|
|
10
|
+
|
|
11
|
+
1. npm run build
|
|
12
|
+
2. npm publish
|
|
13
|
+
|
|
14
|
+
Инструкция по использованию в проекте:
|
|
15
|
+
|
|
16
|
+
1. `npm install @albank/vue-ui-kit`
|
|
17
|
+
2. Импортировать стили `import '@albank/vue-ui-kit/style.css';` в `main.ts`
|
|
18
|
+
3. Импортировать какой-нибудь компонент в приложении `import { Button } from @albank/vue-ui-kit`
|
|
19
|
+
4. Использовать его `<Button>Сохранить<Button>` или кебаб-кейсом с префиксом `aeb` `<aeb-button></aeb-button>`
|
|
20
|
+
5. Запустить проект (например, `npm run serve`)
|
|
21
|
+
|
|
22
|
+
Используемые технологии:
|
|
23
|
+
|
|
24
|
+
1. Vue 3 (Composition API)
|
|
25
|
+
2. TypeScript 5
|
|
26
|
+
3. Vite 4
|
|
27
|
+
4. SCSS
|