You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@opentiny/vue-button-group

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opentiny/vue-button-group - npm Package Compare versions

Comparing version

to
2.22.0

12

lib/index.js

@@ -10,3 +10,3 @@ function _extends() {

}
import { defineComponent, $prefix, $setup, $props } from "@opentiny/vue-common";
import { defineComponent, $props, $setup, $prefix } from "@opentiny/vue-common";
import PcTemplate from "./pc.js";

@@ -20,3 +20,9 @@ import "@opentiny/vue-theme/button-group/index.css";

var buttonGroupProps = _extends({}, $props, {
size: String,
size: {
type: String,
default: "",
validator: function validator(val) {
return ["medium", "small", "mini", ""].includes(val);
}
},
data: {

@@ -65,3 +71,3 @@ type: Array,

});
var version = "2.21.0";
var version = "2.undefined";
ButtonGroup.model = {

@@ -68,0 +74,0 @@ prop: "modelValue",

{
"name": "@opentiny/vue-button-group",
"version": "2.21.0",
"version": "2.22.0",
"description": "",

@@ -10,9 +10,9 @@ "main": "./lib/index.js",

"dependencies": {
"@opentiny/vue-common": "~2.21.0",
"@opentiny/vue-renderless": "~3.21.0",
"@opentiny/vue-theme": "~3.21.0",
"@opentiny/vue-directive": "~2.21.0",
"@opentiny/vue-popover": "~2.21.0",
"@opentiny/vue-button": "~2.21.0",
"@opentiny/vue-icon": "~2.21.0"
"@opentiny/vue-common": "~2.22.0",
"@opentiny/vue-renderless": "~3.22.0",
"@opentiny/vue-theme": "~3.22.0",
"@opentiny/vue-directive": "~2.22.0",
"@opentiny/vue-popover": "~2.22.0",
"@opentiny/vue-button": "~2.22.0",
"@opentiny/vue-icon": "~2.22.0"
},

@@ -19,0 +19,0 @@ "license": "MIT",

import type { PropType } from 'vue';
import type { IButtonGroupNode } from '@opentiny/vue-renderless/types/button-group.type';
export declare const buttonGroupProps: {
size: StringConstructor;
size: {
type: StringConstructor;
default: string;
validator: (val: string) => boolean;
};
data: {

@@ -6,0 +10,0 @@ type: PropType<IButtonGroupNode[]>;