Socket
Socket
Sign inDemoInstall

sid-vue-components

Package Overview
Dependencies
36
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.2.27-sid-8 to 0.2.27-sid-9

src/util/class-util.ts

2

package.json
{
"name": "sid-vue-components",
"version": "0.2.27-sid-8",
"version": "0.2.27-sid-9",
"files": [

@@ -5,0 +5,0 @@ "dist",

@@ -8,2 +8,3 @@ import './css/tailwind.css'

export { default as AisAlert } from './components/alert/AisAlert.vue'
export { default as AisButton } from './components/button/AisButton.vue'

@@ -10,0 +11,0 @@ // export { default as AisAddon } from './components/addon/AisAddon.vue'

@@ -12,1 +12,16 @@ export type CoreIcons = 'arrow' | 'asterisk' | 'busy' | 'new' | 'edit' | 'confirm' | 'cancel' | 'save'

export type ButtonType = 'button' | 'submit' | 'reset'
export type Font = 'caps' | 'sans' | 'serif'
export type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl'
export const fontLookup = (fontStyle: string) => {
const lookup: any = {
'sans': 'font-sans',
'serif': 'font-serif',
'caps': 'font-caps',
}
return lookup[fontStyle] || lookup['sans']
}

@@ -14,2 +14,2 @@ export declare const coreIconMap: any;

};
export declare const coreCustomizations: (icon: string) => string[];
export declare const coreCustomizations: (icon: string) => any[];

@@ -6,1 +6,2 @@ import './css/tailwind.css';

export { default as AisAlert } from './components/alert/AisAlert.vue';
export { default as AisButton } from './components/button/AisButton.vue';
export declare type CoreIcons = 'arrow' | 'asterisk' | 'busy' | 'new' | 'edit' | 'confirm' | 'cancel' | 'save' | 'delete' | 'close' | 'undo' | 'search' | 'filter' | 'info' | 'success' | 'required' | 'error' | 'warning' | 'danger' | 'unknown' | 'person' | 'user' | 'users' | 'group' | 'menu' | 'options' | 'calendar' | 'clock' | 'money' | 'upload' | 'download' | 'left' | 'right' | 'up' | 'down' | 'first' | 'last' | 'caret-left' | 'caret-right' | 'caret-up' | 'caret-down' | 'file' | 'file-pdf' | 'file-csv' | 'file-excel' | 'file-word' | 'file-powerpoint' | 'file-image' | 'file-video' | 'file-upload' | 'default' | 'primary' | 'secondary';
export declare type Variants = 'default' | 'primary' | 'Secondary' | 'info' | 'success' | 'warning' | 'danger' | 'alternate';
export declare type ButtonType = 'button' | 'submit' | 'reset';
export declare type Font = 'caps' | 'sans' | 'serif';
export declare type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
export declare const fontLookup: (fontStyle: string) => any;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc