@flysk-tech/amocrm-kommo-vue-ui-kit 0.1.1 → 0.2.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/README.md +3 -2
- package/dist/index.d.ts +897 -118
- package/dist/index.js +2069 -1416
- package/dist/index.js.map +1 -1
- package/dist/styles/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
|
|
17
17
|
- **Vue 3 + Composition API** with `<script setup>`
|
|
18
18
|
- **TypeScript** — full type coverage
|
|
19
|
-
- **
|
|
19
|
+
- **24 components** — 23 ported from React + MultiSelect (Vue-only)
|
|
20
20
|
- **Dark/light theme** via CSS custom properties
|
|
21
21
|
- **Tree-shaking** — import only what you need
|
|
22
|
-
- **CSS Modules** with SCSS
|
|
22
|
+
- **CSS Modules** with SCSS — same approach as React original, ensures style isolation without conflicts in host page
|
|
23
23
|
|
|
24
24
|
## Installation
|
|
25
25
|
|
|
@@ -89,6 +89,7 @@ import { ConfigProvider, Appearance } from '@flysk-tech/amocrm-kommo-vue-ui-kit'
|
|
|
89
89
|
- **TextArea** — multiline input with autosize
|
|
90
90
|
- **BaseInput** — base input primitive
|
|
91
91
|
- **Select** — dropdown select
|
|
92
|
+
- **MultiSelect** — multi-select with groups, autocomplete, inline mode *(Vue-only, not in React kit)*
|
|
92
93
|
- **SelectButton** — select trigger button
|
|
93
94
|
- **Checkbox** / **CheckboxGroup** — checkboxes with select-all
|
|
94
95
|
- **RadioGroup** — radio buttons
|