@poni/adjutant-ui 0.0.126 → 0.0.127

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.
@@ -4,7 +4,6 @@ import { default as AdjCheckbox } from '../components/AdjCheckbox/AdjCheckbox.vu
4
4
  import { default as AdjDownloadLink } from '../components/AdjDownloadLink/AdjDownloadLink.vue';
5
5
  import { default as AdjDropdownLink } from '../components/AdjDropdownLink/AdjDropdownLink.vue';
6
6
  import { default as AdjFilterCheckbox } from '../components/AdjFilterCheckbox/AdjFilterCheckbox.vue';
7
- import { default as AdjFilters } from '../components/AdjFilters/AdjFilters.vue';
8
7
  import { default as AdjFiltersDesktop } from '../components/AdjFiltersDesktop/AdjFiltersDesktop.vue';
9
8
  import { default as AdjFilterSelect } from '../components/AdjFilterSelect/AdjFilterSelect.vue';
10
9
  import { default as AdjFiltersMobile } from '../components/AdjFiltersMobile/AdjFiltersMobile.vue';
@@ -33,4 +32,4 @@ import { default as AdjSvgYoutube } from '../components/AdjSvg/AdjSvgYoutube.vue
33
32
  import { default as AdjTabs } from '../components/AdjTabs/AdjTabs.vue';
34
33
  import { default as AdjTabsMaterial } from '../components/AdjTabsMaterial/AdjTabsMaterial.vue';
35
34
  import { default as AdjUploadFile } from '../components/AdjUploadFile/AdjUploadFile.vue';
36
- export { AdjButton, AdjButtonCheckbox, AdjCheckbox, AdjDownloadLink, AdjDropdownLink, AdjFilterCheckbox, AdjFilters, AdjFiltersDesktop, AdjFilterSelect, AdjFiltersMobile, AdjHint, AdjHintDesktop, AdjIcon, AdjIconButton, AdjIconButtonText, AdjImageButton, AdjInput, AdjInputModern, AdjInputNumber, AdjModal, AdjRadio, AdjScroll, AdjSelect, AdjSelectImage, AdjSelectModern, AdjSkeleton, AdjSkeletonItem, AdjSliderButton, AdjSvgActive, AdjSvgEdit, AdjSvgFly, AdjSvgYoutube, AdjTabs, AdjTabsMaterial, AdjUploadFile, };
35
+ export { AdjButton, AdjButtonCheckbox, AdjCheckbox, AdjDownloadLink, AdjDropdownLink, AdjFilterCheckbox, AdjFiltersDesktop, AdjFilterSelect, AdjFiltersMobile, AdjHint, AdjHintDesktop, AdjIcon, AdjIconButton, AdjIconButtonText, AdjImageButton, AdjInput, AdjInputModern, AdjInputNumber, AdjModal, AdjRadio, AdjScroll, AdjSelect, AdjSelectImage, AdjSelectModern, AdjSkeleton, AdjSkeletonItem, AdjSliderButton, AdjSvgActive, AdjSvgEdit, AdjSvgFly, AdjSvgYoutube, AdjTabs, AdjTabsMaterial, AdjUploadFile, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poni/adjutant-ui",
3
- "version": "0.0.126",
3
+ "version": "0.0.127",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -66,7 +66,7 @@
66
66
  "@vue/eslint-config-typescript": "^14.3.0",
67
67
  "@vue/tsconfig": "^0.7.0",
68
68
  "@vueuse/core": "^12.5.0",
69
- "eslint": "^9.19.0",
69
+ "eslint": "^9.20.0",
70
70
  "eslint-plugin-storybook": "^0.11.2",
71
71
  "eslint-plugin-vue": "^9.32.0",
72
72
  "npm-run-all2": "^7.0.2",
@@ -1,2 +0,0 @@
1
- import { default as AdjFilters } from './AdjFilters.vue';
2
- export declare const argsBase: InstanceType<typeof AdjFilters>['$props'];
@@ -1,6 +0,0 @@
1
- import { default as AdjFilters } from './AdjFilters.vue';
2
- import { Meta, StoryObj } from '@storybook/vue3';
3
- declare const meta: Meta<typeof AdjFilters>;
4
- export default meta;
5
- type Story = StoryObj<typeof meta>;
6
- export declare const Base: Story;
@@ -1,22 +0,0 @@
1
- import { IAdjFiltersItem } from '../../types/IAdjFiltersItem';
2
- import { IAdjItem } from '../../types/IAdjItem';
3
- type __VLS_Props = {
4
- /** Массив фильтров */
5
- filters: Array<IAdjFiltersItem>;
6
- /** Массив выбранных фильтров */
7
- modelValue: Array<IAdjItem | object | boolean>;
8
- /** Ширина мобильных фильтров при ширине >=780 */
9
- filterWidth?: string;
10
- /** Название кнопки / заголовок (мобильных фильтров) */
11
- name: string;
12
- /** Название ссылки сбросить (мобильных фильтров) */
13
- nameReset: string;
14
- };
15
- declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
16
- "update:modelValue": (value: (boolean | object | IAdjItem)[]) => any;
17
- }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
18
- "onUpdate:modelValue"?: ((value: (boolean | object | IAdjItem)[]) => any) | undefined;
19
- }>, {
20
- filterWidth: string;
21
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
22
- export default _default;