@volverjs/ui-vue 0.0.10-beta.53 → 0.0.10-beta.54
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/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +13 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +9 -0
- package/dist/components/VvCheckboxGroup/index.d.ts +4 -0
- package/dist/components/VvInputFile/VvInputFile.es.js +17 -3
- package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
- package/dist/components/VvInputFile/VvInputFile.vue.d.ts +9 -0
- package/dist/components/VvInputFile/index.d.ts +4 -0
- package/dist/components/VvInputText/VvInputText.es.js +1 -1
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +13 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +9 -0
- package/dist/components/VvRadioGroup/index.d.ts +4 -0
- package/dist/components/VvTextarea/VvTextarea.es.js +290 -290
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/index.es.js +16 -6
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +8 -1
- package/dist/stories/InputText/InputText.stories.d.ts +2 -0
- package/dist/stories/InputText/InputText.test.d.ts +2 -0
- package/package.json +3 -3
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvCheckbox/VvCheckbox.vue +2 -2
- package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +2 -0
- package/src/components/VvInputFile/VvInputFile.vue +12 -8
- package/src/components/VvInputFile/index.ts +2 -0
- package/src/components/VvInputText/VvInputText.vue +2 -2
- package/src/components/VvRadio/VvRadio.vue +2 -2
- package/src/components/VvRadioGroup/VvRadioGroup.vue +2 -0
- package/src/components/VvTextarea/VvTextarea.vue +1 -1
- package/src/props/index.ts +2 -1
- package/src/stories/InputText/InputText.stories.ts +37 -1
- package/src/stories/InputText/InputText.test.ts +18 -0
- package/src/stories/Textarea/Textarea.stories.ts +1 -1
package/dist/props/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { PropType } from 'vue';
|
|
2
1
|
import type { VvIconProps } from '@/components/VvIcon';
|
|
3
2
|
import type { AutoPlacementOptions, FlipOptions, OffsetOptions, ShiftOptions, SizeOptions } from '@/types/floating-ui';
|
|
4
3
|
import type { Option } from '@/types/generic';
|
|
5
4
|
import type { NavItem } from '@/types/nav';
|
|
5
|
+
import type { PropType } from 'vue';
|
|
6
6
|
import { ActionTag, ButtonType, Placement, Position, Side, StorageType, Strategy } from '@/constants';
|
|
7
7
|
export declare const LinkProps: {
|
|
8
8
|
/**
|
|
@@ -721,6 +721,13 @@ export declare const CheckboxRadioGroupProps: {
|
|
|
721
721
|
type: BooleanConstructor;
|
|
722
722
|
default: boolean;
|
|
723
723
|
};
|
|
724
|
+
/**
|
|
725
|
+
* Whether the form control is required
|
|
726
|
+
*/
|
|
727
|
+
required: {
|
|
728
|
+
type: BooleanConstructor;
|
|
729
|
+
default: boolean;
|
|
730
|
+
};
|
|
724
731
|
/**
|
|
725
732
|
* Loading status
|
|
726
733
|
*/
|
|
@@ -4,6 +4,8 @@ declare const meta: Meta<typeof VvInputText>;
|
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof VvInputText>;
|
|
6
6
|
export declare const Default: Story;
|
|
7
|
+
export declare const Null: Story;
|
|
8
|
+
export declare const Undefined: Story;
|
|
7
9
|
export declare const Disabled: Story;
|
|
8
10
|
export declare const Readonly: Story;
|
|
9
11
|
export declare const Valid: Story;
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import type { PlayAttributes } from '@/test/types';
|
|
2
|
+
export declare function checkNullTest({ canvasElement }: PlayAttributes): Promise<void>;
|
|
3
|
+
export declare function checkUndefinedTest({ canvasElement }: PlayAttributes): Promise<void>;
|
|
2
4
|
export declare function defaultTest({ canvasElement, args }: PlayAttributes): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volverjs/ui-vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.10-beta.
|
|
4
|
+
"version": "0.0.10-beta.54",
|
|
5
5
|
"description": "@volverjs/ui-vue is a lightweight Vue 3 component library to accompany @volverjs/style.",
|
|
6
6
|
"author": "8 Wave S.r.l.",
|
|
7
7
|
"license": "MIT",
|
|
@@ -426,7 +426,7 @@
|
|
|
426
426
|
"@types/node": "^22.9.0",
|
|
427
427
|
"@types/pica": "^9.0.4",
|
|
428
428
|
"@types/yargs": "^17.0.33",
|
|
429
|
-
"@vitejs/plugin-vue": "^5.
|
|
429
|
+
"@vitejs/plugin-vue": "^5.2.0",
|
|
430
430
|
"@vue/compiler-sfc": "^3.5.12",
|
|
431
431
|
"@vue/eslint-config-typescript": "^14.1.3",
|
|
432
432
|
"@vue/test-utils": "^2.4.6",
|
|
@@ -442,7 +442,7 @@
|
|
|
442
442
|
"prettier": "^3.3.3",
|
|
443
443
|
"pretty-format": "^29.7.0",
|
|
444
444
|
"remark": "^15.0.1",
|
|
445
|
-
"sass": "^1.80.
|
|
445
|
+
"sass": "^1.80.7",
|
|
446
446
|
"storybook": "^8.4.2",
|
|
447
447
|
"storybook-addon-markdown-docs": "^2.0.0",
|
|
448
448
|
"storybook-dark-mode": "^4.0.2",
|