@sabrenski/spire-ui-vue 0.3.16 → 0.3.18
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/Checkbox/types.d.ts +1 -1
- package/dist/components/Radio/types.d.ts +1 -1
- package/dist/components/Switch/types.d.ts +1 -1
- package/dist/spire-ui.cjs +36 -36
- package/dist/spire-ui.css +1 -1
- package/dist/spire-ui.js +6483 -6406
- package/dist/theme/semantic.css +4 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InjectionKey, Ref } from 'vue';
|
|
2
2
|
export type CheckboxSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
3
|
-
export type CheckboxColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger';
|
|
3
|
+
export type CheckboxColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral';
|
|
4
4
|
export type CheckboxRadius = 'none' | 'sm' | 'md' | 'lg' | 'full';
|
|
5
5
|
export type CheckboxVariant = 'default' | 'card' | 'pill';
|
|
6
6
|
export interface CheckboxProps {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InjectionKey, Ref } from 'vue';
|
|
2
2
|
export type RadioSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
3
|
-
export type RadioColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger';
|
|
3
|
+
export type RadioColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral';
|
|
4
4
|
export type RadioVariant = 'default' | 'card' | 'pill';
|
|
5
5
|
export interface RadioProps {
|
|
6
6
|
/** Bound value for v-model (standalone radio) */
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InjectionKey, Ref } from 'vue';
|
|
2
2
|
export type SwitchSize = 'sm' | 'md' | 'lg';
|
|
3
|
-
export type SwitchColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger';
|
|
3
|
+
export type SwitchColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral';
|
|
4
4
|
export type SwitchLabelPlacement = 'start' | 'end';
|
|
5
5
|
export type SwitchJustify = 'start' | 'between';
|
|
6
6
|
export interface SwitchProps {
|