@cerebruminc/cerebellum 16.4.0 → 16.5.0-beta.dangerous.2a9d306
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/lib/cjs/Bill.cjs +19 -0
- package/lib/cjs/Bill.cjs.map +1 -0
- package/lib/cjs/Checklist.cjs +19 -0
- package/lib/cjs/Checklist.cjs.map +1 -0
- package/lib/cjs/Footer.cjs +35 -11
- package/lib/cjs/Footer.cjs.map +1 -1
- package/lib/cjs/index.cjs +4 -0
- package/lib/cjs/index.cjs.map +1 -1
- package/lib/esm/Bill.js +17 -0
- package/lib/esm/Bill.js.map +1 -0
- package/lib/esm/Checklist.js +17 -0
- package/lib/esm/Checklist.js.map +1 -0
- package/lib/esm/Footer.js +35 -11
- package/lib/esm/Footer.js.map +1 -1
- package/lib/esm/index.js +2 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/types/src/components/Footer/FooterStyles.d.ts +2 -2
- package/lib/types/src/components/Footer/types.d.ts +7 -0
- package/lib/types/src/components/Icons/Bill.d.ts +2 -0
- package/lib/types/src/components/Icons/Checklist.d.ts +2 -0
- package/lib/types/src/components/Icons/index.d.ts +3 -1
- package/lib/types/src/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { CopyrightProps, FooterBaseProps, FooterLinkProps, LineProps, LogoBoxProps, SocialLinksProps, TermsBoxProps } from "./types";
|
|
1
|
+
import { CopyrightProps, DetailsBoxProps, FooterBaseProps, FooterLinkProps, LineProps, LogoBoxProps, SocialLinksProps, TermsBoxProps } from "./types";
|
|
2
2
|
export declare const FooterBase: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, FooterBaseProps>> & string;
|
|
3
3
|
export declare const LogoBox: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, LogoBoxProps>> & string;
|
|
4
4
|
export declare const LogoLink: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, never>> & string;
|
|
5
5
|
export declare const FooterLink: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, FooterLinkProps>> & string;
|
|
6
|
-
export declare const DetailsBox: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").
|
|
6
|
+
export declare const DetailsBox: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, DetailsBoxProps>> & string;
|
|
7
7
|
export declare const TermsBox: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, TermsBoxProps>> & string;
|
|
8
8
|
export declare const Copyright: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, CopyrightProps>> & string;
|
|
9
9
|
export declare const Line: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, LineProps>> & string;
|
|
@@ -30,16 +30,23 @@ export interface ThemeOverride {
|
|
|
30
30
|
maxFooterWidth?: number;
|
|
31
31
|
}
|
|
32
32
|
export interface FooterBaseProps {
|
|
33
|
+
$centerLinks: boolean;
|
|
33
34
|
$stackSocialOnMobile?: boolean;
|
|
34
35
|
$themeOverride?: ThemeOverride;
|
|
35
36
|
}
|
|
36
37
|
export interface LogoBoxProps {
|
|
38
|
+
$centerLinks: boolean;
|
|
37
39
|
$stackSocialOnMobile?: boolean;
|
|
38
40
|
}
|
|
39
41
|
export interface FooterLinkProps {
|
|
40
42
|
$themeOverride?: ThemeOverride;
|
|
41
43
|
}
|
|
44
|
+
export interface DetailsBoxProps {
|
|
45
|
+
$centerLinks: boolean;
|
|
46
|
+
$oneTerm: boolean;
|
|
47
|
+
}
|
|
42
48
|
export interface TermsBoxProps {
|
|
49
|
+
$centerLinks: boolean;
|
|
43
50
|
$themeOverride?: ThemeOverride;
|
|
44
51
|
}
|
|
45
52
|
export interface CopyrightProps {
|
|
@@ -8,6 +8,7 @@ import { Attachment } from "./Attachment";
|
|
|
8
8
|
import { BackCircle } from "./BackCircle";
|
|
9
9
|
import { BackgroundCheck } from "./BackgroundCheck";
|
|
10
10
|
import { BellOutline } from "./BellOutline";
|
|
11
|
+
import { Bill } from "./Bill";
|
|
11
12
|
import { Calendar } from "./Calendar";
|
|
12
13
|
import { Camera } from "./Camera";
|
|
13
14
|
import { Car } from "./Car";
|
|
@@ -22,6 +23,7 @@ import { Check } from "./Check";
|
|
|
22
23
|
import { CheckboxEmpty } from "./CheckboxEmpty";
|
|
23
24
|
import { CheckboxFull } from "./CheckboxFull";
|
|
24
25
|
import { CheckedOff } from "./CheckedOff";
|
|
26
|
+
import { Checklist } from "./Checklist";
|
|
25
27
|
import { CheckmarkCircle } from "./CheckmarkCircle";
|
|
26
28
|
import { Clear } from "./Clear";
|
|
27
29
|
import { ClearSquare } from "./ClearSquare";
|
|
@@ -176,5 +178,5 @@ import { Orders as Clipboard } from "./Orders";
|
|
|
176
178
|
import { Gear } from "./Settings";
|
|
177
179
|
import { Volunteer as Heart } from "./Volunteer";
|
|
178
180
|
import { Warning as WarningExclaim } from "./Warning";
|
|
179
|
-
export { AltIdBack, AltIdFront, Arrow, ArrowLong, Assign, At, Attachment, BackCircle, BackgroundCheck, BellOutline, Calendar, Camera, Car, CaretDown, CaretLeft, CaretRight, CaretUp, Cart, Certs, ChatBubbleLines, Check, CheckboxEmpty, CheckboxFull, CheckedOff, CheckmarkCircle, Clear, ClearSquare, Clipboard, Close, CloseCircle, Clock, Code, CodeDoc, Communication, Configure, Construction, Contact, Copy, Covid, CovidTest, CovidVaccineCard, CreditCard, CsvDoc, Dashboard, Delete, DesktopSelfie, Document, Dollar, Download, DownloadDocument, Drag, Dribbble, DriversLicense, DrugTest, Duplicate, Edit, EditCircle, Education, Ellipsis, Email, Employee, Expand, Expired, Eye, EyeOff, Facebook, File, FileComplete, FileError, Filter, Filters, Flag, Folder, FolderClosed, FolderOpen, Gear, GitHub, Grid, Healthcare, Heart, Help, Home, HomeOutline, ID, IdBack, IdFront, IdReverse, Inactive, IndicatorDown, IndicatorLeft, IndicatorRight, IndicatorUp, InfoCircle, Issue, Key, Lightbulb, Lightning, LinkedIn, List, Location, LocationPin, Lock, LogOut, Marketplace, Menu, Merge, MinusCircle, Mobile, Money, Military, No, Orders, Package, PackageDownArrow, Passport, PassportCard, PDF, Phone, Pillar, Plus, PlusCircle, Print, QRCode, Queue, RadioEmpty, RadioFull, Received, RefreshLock, Reporting, Resend, ResultsQueue, Review, Search, Selfie, SelfiePhone, Send, SendOutline, Settings, Share, ShareVID, Sign, SignDoc, Sort, SortDown, SortUp, Sports, Ssn, Star, Status, Stop, SubOrg, Support, SupportHeadset, Switcher, Tenant, Timer, Tip, Trash, Twitter, Update, Upload, UploadDocument, User, UserAdd, UserOutline, UserRecords, UserSearch, Vaccine, VID, Video, VIDLogo, Volleyball, Volunteer, Wait, Warning, WarningExclaim, Wrench, X, };
|
|
181
|
+
export { AltIdBack, AltIdFront, Arrow, ArrowLong, Assign, At, Attachment, BackCircle, BackgroundCheck, BellOutline, Bill, Calendar, Camera, Car, CaretDown, CaretLeft, CaretRight, CaretUp, Cart, Certs, ChatBubbleLines, Check, CheckboxEmpty, CheckboxFull, CheckedOff, Checklist, CheckmarkCircle, Clear, ClearSquare, Clipboard, Close, CloseCircle, Clock, Code, CodeDoc, Communication, Configure, Construction, Contact, Copy, Covid, CovidTest, CovidVaccineCard, CreditCard, CsvDoc, Dashboard, Delete, DesktopSelfie, Document, Dollar, Download, DownloadDocument, Drag, Dribbble, DriversLicense, DrugTest, Duplicate, Edit, EditCircle, Education, Ellipsis, Email, Employee, Expand, Expired, Eye, EyeOff, Facebook, File, FileComplete, FileError, Filter, Filters, Flag, Folder, FolderClosed, FolderOpen, Gear, GitHub, Grid, Healthcare, Heart, Help, Home, HomeOutline, ID, IdBack, IdFront, IdReverse, Inactive, IndicatorDown, IndicatorLeft, IndicatorRight, IndicatorUp, InfoCircle, Issue, Key, Lightbulb, Lightning, LinkedIn, List, Location, LocationPin, Lock, LogOut, Marketplace, Menu, Merge, MinusCircle, Mobile, Money, Military, No, Orders, Package, PackageDownArrow, Passport, PassportCard, PDF, Phone, Pillar, Plus, PlusCircle, Print, QRCode, Queue, RadioEmpty, RadioFull, Received, RefreshLock, Reporting, Resend, ResultsQueue, Review, Search, Selfie, SelfiePhone, Send, SendOutline, Settings, Share, ShareVID, Sign, SignDoc, Sort, SortDown, SortUp, Sports, Ssn, Star, Status, Stop, SubOrg, Support, SupportHeadset, Switcher, Tenant, Timer, Tip, Trash, Twitter, Update, Upload, UploadDocument, User, UserAdd, UserOutline, UserRecords, UserSearch, Vaccine, VID, Video, VIDLogo, Volleyball, Volunteer, Wait, Warning, WarningExclaim, Wrench, X, };
|
|
180
182
|
export type { IconProps, IconType } from "./types";
|
package/lib/types/src/index.d.ts
CHANGED
|
@@ -118,7 +118,7 @@ export { Scroller, ShortScroller } from "./sharedStyle/Scroller";
|
|
|
118
118
|
export { TitleGroup, FormSeparator } from "./components/Form/FormStyles";
|
|
119
119
|
export { ThemeProvider } from "./components/ThemeProvider/ThemeProvider";
|
|
120
120
|
export { cerebellumTheme, cortexTheme } from "./theme";
|
|
121
|
-
export { AltIdBack, AltIdFront, Arrow, ArrowLong, Assign, At, Attachment, BackCircle, BackgroundCheck, BellOutline, Calendar, Camera, Car, CaretDown, CaretLeft, CaretRight, CaretUp, Cart, Certs, ChatBubbleLines, Check, CheckboxEmpty, CheckboxFull, CheckedOff, CheckmarkCircle, Clear, ClearSquare, Clipboard, Clock, Close, CloseCircle, Code, CodeDoc, Communication, Configure, Construction, Contact, Copy, Covid, CovidTest, CovidVaccineCard, CreditCard, CsvDoc, Dashboard, Delete, DesktopSelfie, Document, Dollar, Download, DownloadDocument, Drag, Dribbble, DriversLicense, DrugTest, Duplicate, Edit, EditCircle, Education, Ellipsis, Email, Employee, Expand, Expired, Eye, EyeOff, Facebook, File, FileComplete, FileError, Filter, Filters, Flag, Folder, FolderClosed, FolderOpen, Gear, GitHub, Grid, Healthcare, Heart, Help, Home, HomeOutline, ID, IdBack, IdFront, IdReverse, Inactive, IndicatorDown, IndicatorLeft, IndicatorRight, IndicatorUp, InfoCircle, Issue, Key, Lightbulb, Lightning, LinkedIn, List, Location, LocationPin, Lock, LogOut, Marketplace, Menu, Merge, Military, MinusCircle, Mobile, Money, No, Orders, Package, PackageDownArrow, Passport, PassportCard, PDF, Phone, Pillar, Plus, PlusCircle, Print, QRCode, Queue, RadioEmpty, RadioFull, Received, RefreshLock, Reporting, Resend, ResultsQueue, Review, Search, Selfie, SelfiePhone, Send, SendOutline, Settings, Share, ShareVID, Sign, SignDoc, Sort, SortDown, SortUp, Sports, Ssn, Star, Status, Stop, SubOrg, Support, SupportHeadset, Switcher, Tenant, Timer, Tip, Trash, Twitter, Update, Upload, UploadDocument, User, UserAdd, UserOutline, UserRecords, UserSearch, Vaccine, VID, Video, VIDLogo, Volleyball, Volunteer, Wait, Warning, WarningExclaim, Wrench, X, } from "./components/Icons";
|
|
121
|
+
export { AltIdBack, AltIdFront, Arrow, ArrowLong, Assign, At, Attachment, BackCircle, BackgroundCheck, BellOutline, Bill, Calendar, Camera, Car, CaretDown, CaretLeft, CaretRight, CaretUp, Cart, Certs, ChatBubbleLines, Check, CheckboxEmpty, CheckboxFull, CheckedOff, Checklist, CheckmarkCircle, Clear, ClearSquare, Clipboard, Clock, Close, CloseCircle, Code, CodeDoc, Communication, Configure, Construction, Contact, Copy, Covid, CovidTest, CovidVaccineCard, CreditCard, CsvDoc, Dashboard, Delete, DesktopSelfie, Document, Dollar, Download, DownloadDocument, Drag, Dribbble, DriversLicense, DrugTest, Duplicate, Edit, EditCircle, Education, Ellipsis, Email, Employee, Expand, Expired, Eye, EyeOff, Facebook, File, FileComplete, FileError, Filter, Filters, Flag, Folder, FolderClosed, FolderOpen, Gear, GitHub, Grid, Healthcare, Heart, Help, Home, HomeOutline, ID, IdBack, IdFront, IdReverse, Inactive, IndicatorDown, IndicatorLeft, IndicatorRight, IndicatorUp, InfoCircle, Issue, Key, Lightbulb, Lightning, LinkedIn, List, Location, LocationPin, Lock, LogOut, Marketplace, Menu, Merge, Military, MinusCircle, Mobile, Money, No, Orders, Package, PackageDownArrow, Passport, PassportCard, PDF, Phone, Pillar, Plus, PlusCircle, Print, QRCode, Queue, RadioEmpty, RadioFull, Received, RefreshLock, Reporting, Resend, ResultsQueue, Review, Search, Selfie, SelfiePhone, Send, SendOutline, Settings, Share, ShareVID, Sign, SignDoc, Sort, SortDown, SortUp, Sports, Ssn, Star, Status, Stop, SubOrg, Support, SupportHeadset, Switcher, Tenant, Timer, Tip, Trash, Twitter, Update, Upload, UploadDocument, User, UserAdd, UserOutline, UserRecords, UserSearch, Vaccine, VID, Video, VIDLogo, Volleyball, Volunteer, Wait, Warning, WarningExclaim, Wrench, X, } from "./components/Icons";
|
|
122
122
|
export { LayoutSidebar } from "./layout/LayoutSidebar";
|
|
123
123
|
export { NavLayout } from "./layout/NavLayout";
|
|
124
124
|
export { NotFound } from "./pages/NotFound";
|