agnostic-svelte
Advanced tools
Comparing version 1.1.18 to 1.1.19
@@ -17,11 +17,11 @@ declare namespace _default { | ||
} | ||
namespace isBlock { | ||
namespace isCapsule { | ||
const control_3: string; | ||
export { control_3 as control }; | ||
} | ||
namespace isDisabled { | ||
namespace isBlock { | ||
const control_4: string; | ||
export { control_4 as control }; | ||
} | ||
namespace isRaised { | ||
namespace isDisabled { | ||
const control_5: string; | ||
@@ -62,2 +62,3 @@ export { control_5 as control }; | ||
export const PrimaryBordered: any; | ||
export const PrimaryCapsule: any; | ||
export const PrimaryRounded: any; | ||
@@ -71,2 +72,3 @@ export const PrimaryRoundedRaised: any; | ||
export const SecondaryBordered: any; | ||
export const SecondaryCapsule: any; | ||
export const SecondaryRounded: any; | ||
@@ -77,3 +79,2 @@ export const SecondaryCircle: any; | ||
export const Default: any; | ||
export const DefaultRaised: any; | ||
export const DefaultBordered: any; | ||
@@ -80,0 +81,0 @@ export const DefaultRounded: any; |
@@ -22,5 +22,5 @@ import ButtonSlot from "./ButtonSlot.svelte"; | ||
isBordered: { control: "boolean" }, | ||
isCapsule: { control: "boolean" }, | ||
isBlock: { control: "boolean" }, | ||
isDisabled: { control: "boolean" }, | ||
isRaised: { control: "boolean" }, | ||
isCircle: { control: "boolean" }, | ||
@@ -59,2 +59,8 @@ isRounded: { control: "boolean" }, | ||
export const PrimaryCapsule = Template.bind({}); | ||
PrimaryCapsule.args = { | ||
mode: "primary", | ||
isCapsule: true, | ||
}; | ||
export const PrimaryRounded = Template.bind({}); | ||
@@ -70,3 +76,2 @@ PrimaryRounded.args = { | ||
isRounded: true, | ||
isRaised: true, | ||
}; | ||
@@ -110,2 +115,8 @@ | ||
export const SecondaryCapsule = Template.bind({}); | ||
SecondaryCapsule.args = { | ||
mode: "secondary", | ||
isCapsule: true, | ||
}; | ||
export const SecondaryRounded = Template.bind({}); | ||
@@ -127,3 +138,2 @@ SecondaryRounded.args = { | ||
isRounded: true, | ||
isRaised: true, | ||
}; | ||
@@ -141,7 +151,2 @@ | ||
export const DefaultRaised = Template.bind({}); | ||
DefaultRaised.args = { | ||
isRaised: true, | ||
}; | ||
export const DefaultBordered = Template.bind({}); | ||
@@ -148,0 +153,0 @@ DefaultBordered.args = { |
@@ -11,2 +11,3 @@ /** @typedef {typeof __propDef.props} ButtonProps */ | ||
isBordered?: boolean; | ||
isCapsule?: boolean; | ||
isGrouped?: boolean; | ||
@@ -18,3 +19,2 @@ isBlock?: boolean; | ||
role?: any; | ||
isRaised?: boolean; | ||
isCircle?: boolean; | ||
@@ -49,2 +49,3 @@ isSkinned?: boolean; | ||
isBordered?: boolean; | ||
isCapsule?: boolean; | ||
isGrouped?: boolean; | ||
@@ -56,3 +57,2 @@ isBlock?: boolean; | ||
role?: any; | ||
isRaised?: boolean; | ||
isCircle?: boolean; | ||
@@ -59,0 +59,0 @@ isSkinned?: boolean; |
@@ -10,2 +10,3 @@ /** @typedef {typeof __propDef.props} ButtonSlotProps */ | ||
isBordered?: boolean; | ||
isCapsule?: boolean; | ||
isBlock?: boolean; | ||
@@ -15,3 +16,2 @@ isLink?: boolean; | ||
isDisabled?: boolean; | ||
isRaised?: boolean; | ||
isCircle?: boolean; | ||
@@ -39,2 +39,3 @@ isSkinned?: boolean; | ||
isBordered?: boolean; | ||
isCapsule?: boolean; | ||
isBlock?: boolean; | ||
@@ -44,3 +45,2 @@ isLink?: boolean; | ||
isDisabled?: boolean; | ||
isRaised?: boolean; | ||
isCircle?: boolean; | ||
@@ -47,0 +47,0 @@ isSkinned?: boolean; |
@@ -23,2 +23,5 @@ declare namespace _default { | ||
export const CaptionEnd: any; | ||
export const LimitFive: any; | ||
export const OffsetFive: any; | ||
export const Offset2Limit3: any; | ||
import FontDecorator from "../../storybook-helpers/FontDecorator.svelte"; |
@@ -141,1 +141,10 @@ import TableCustomRenderComponent from "./TableCustomRenderComponent.svelte"; | ||
CaptionEnd.args = { ...defaultArgs, captionPosition: "end" }; | ||
export const LimitFive = Template.bind({}); | ||
LimitFive.args = { ...defaultArgs, limit: 5 }; | ||
export const OffsetFive = Template.bind({}); | ||
OffsetFive.args = { ...defaultArgs, offset: 5 }; | ||
export const Offset2Limit3 = Template.bind({}); | ||
Offset2Limit3.args = { ...defaultArgs, offset: 2, limit: 3 }; |
@@ -17,2 +17,4 @@ /** @typedef {typeof __propDef.props} TableProps */ | ||
isHoverable?: boolean; | ||
offset?: number; | ||
limit?: number; | ||
}, { | ||
@@ -40,2 +42,4 @@ [evt: string]: CustomEvent<any>; | ||
isHoverable?: boolean; | ||
offset?: number; | ||
limit?: number; | ||
}; | ||
@@ -42,0 +46,0 @@ events: { |
{ | ||
"name": "agnostic-svelte", | ||
"version": "1.1.18", | ||
"version": "1.1.19", | ||
"description": "AgnosticUI (svelte)", | ||
@@ -5,0 +5,0 @@ "author": "Rob Levin <roblevinillustration@gmail.com>", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4407
367261