Unverified Commit 500b104b authored by Dmitriy's avatar Dmitriy Committed by GitHub
Browse files

Merge pull request #3 from malyusgun/develop

Table (partially), Checkbox, Tag, Select and Knob
parents 3a9b6ad0 4809c4e0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,5 +3,5 @@
  "$schema": "https://json.schemastore.org/prettierrc",
  "semi": true,
  "singleQuote": true,
  "printWidth": 100
  "printWidth": 120
}
+4 −9
Original line number Diff line number Diff line
import type { StorybookConfig } from '@storybook/vue3-vite'
import type { StorybookConfig } from '@storybook/vue3-vite';

const config: StorybookConfig = {
  stories: ['../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
  addons: [
    '@storybook/addon-onboarding',
    '@storybook/addon-essentials',
    '@chromatic-com/storybook',
    '@storybook/addon-interactions',
  ],
  addons: ['@storybook/addon-essentials', '@chromatic-com/storybook', '@storybook/addon-interactions'],
  framework: {
    name: '@storybook/vue3-vite',
    options: {},
  },
}
export default config
};
export default config;

.yarn/install-state.gz

0 → 100644
+596 KiB

File added.

No diff preview for this file type.

.yarnrc.yml

0 → 100644
+1 −0
Original line number Diff line number Diff line
nodeLinker: node-modules
+11 −4
Original line number Diff line number Diff line
@@ -5,22 +5,29 @@
> лёгкости и простоте.

## Список компонентов:
- Table;
- TreeList;
- MenuDial;
- Popup;
- Slider;
- Drawer;
- Modal;
- Knob;
- Select;
- SelectButton;
- Button;
- ToggleSwitch;
- Tag;
- Checkbox;
- Divider.

---
## Общая информация
### Components count: 10
### Bundle size: 254.6KB
### Components count: 15
### Bundle size: 292.7KB

---

## Важные моменты при разработке
### Общее начало шаблона для компонентов:
```  
@@ -29,8 +36,8 @@ const props = withDefaults(defineProps<IProps>(), {
});    
const emit = defineEmits(['']);  
const visible = defineModel('');  
watch(, () => {});  
const computed = computed(() => );  
// watch(, () => {});
// const computed1 = computed(() => );
```
- I*Componentname*Props вместо ```IProps```;
- watchers после defineModel;
Loading