@codeandfunction/callaloo 1.3.2 → 1.3.4
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/Typography/Heading.vue.d.ts +38 -35
- package/dist/components/Typography/Text.vue.d.ts +48 -44
- package/dist/index.d.ts +1 -1
- package/dist/index.js +98 -122
- package/dist/index.umd.cjs +98 -122
- package/dist/types.d.ts +5 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export declare enum ButtonTypes {
|
|
|
11
11
|
Submit = "submit"
|
|
12
12
|
}
|
|
13
13
|
export type BannerThemes = Exclude<Themes, Themes.Transparent>;
|
|
14
|
+
export type BlockTextHtmlTags = 'blockquote' | 'dd' | 'div' | 'dl' | 'dt' | 'figcaption' | 'figure' | 'hr' | 'li' | 'menu' | 'ol' | 'p' | 'pre' | 'ul';
|
|
14
15
|
export interface BannerProps {
|
|
15
16
|
ariaLabel?: string;
|
|
16
17
|
busy?: boolean;
|
|
@@ -135,6 +136,7 @@ export declare enum IconStrokeWeight {
|
|
|
135
136
|
Light = "1",
|
|
136
137
|
Normal = "2"
|
|
137
138
|
}
|
|
139
|
+
export type InlineTextHtmlTags = 'a' | 'abbr' | 'b' | 'bdi' | 'bdo' | 'br' | 'cite' | 'code' | 'data' | 'dfn' | 'em' | 'i' | 'kbd' | 'mark' | 'q' | 'rp' | 'rt' | 'ruby' | 's' | 'samp' | 'small' | 'span' | 'strong' | 'sub' | 'sup' | 'time' | 'u' | 'var' | 'wbr';
|
|
138
140
|
export declare enum InputTypes {
|
|
139
141
|
Date = "date",
|
|
140
142
|
DateTimeLocal = "datetime-local",
|
|
@@ -239,6 +241,7 @@ export declare enum TableTypes {
|
|
|
239
241
|
Default = "default",
|
|
240
242
|
Plain = "plain"
|
|
241
243
|
}
|
|
244
|
+
export type TextHtmlTags = BlockTextHtmlTags | InlineTextHtmlTags;
|
|
242
245
|
export type TextThemes = Extract<Themes, Themes.Light | Themes.Dark>;
|
|
243
246
|
export declare enum TextTypes {
|
|
244
247
|
Body = "body",
|
|
@@ -246,7 +249,8 @@ export declare enum TextTypes {
|
|
|
246
249
|
Tiny = "tiny",
|
|
247
250
|
Small = "small",
|
|
248
251
|
Medium = "medium",
|
|
249
|
-
Large = "large"
|
|
252
|
+
Large = "large",
|
|
253
|
+
XLarge = "xlarge"
|
|
250
254
|
}
|
|
251
255
|
export declare enum Themes {
|
|
252
256
|
Default = "default",
|