@abgov/web-components 1.18.0 → 1.19.0
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/README.md +25 -6
- package/components/_experimental/sidebar/Sidebar.svelte.d.ts +1 -0
- package/components/_experimental/sidebar/SidebarItem.svelte.d.ts +1 -0
- package/components/accordion/Accordion.svelte.d.ts +1 -0
- package/components/app-header/AppHeader.svelte.d.ts +1 -0
- package/components/app-header-menu/AppHeaderMenu.svelte.d.ts +1 -0
- package/components/badge/Badge.svelte.d.ts +1 -0
- package/components/block/Block.svelte.d.ts +1 -0
- package/components/button/Button.svelte.d.ts +1 -0
- package/components/button-group/ButtonGroup.svelte.d.ts +1 -0
- package/components/calendar/Calendar.svelte.d.ts +1 -0
- package/components/callout/Callout.svelte.d.ts +1 -0
- package/components/card/Card.svelte.d.ts +1 -0
- package/components/card-actions/CardActions.svelte.d.ts +1 -0
- package/components/card-content/CardContent.svelte.d.ts +1 -0
- package/components/card-group/CardGroup.svelte.d.ts +1 -0
- package/components/card-image/CardImage.svelte.d.ts +1 -0
- package/components/checkbox/Checkbox.svelte.d.ts +1 -0
- package/components/chip/Chip.svelte.d.ts +1 -0
- package/components/circular-progress/CircularProgress.svelte.d.ts +1 -0
- package/components/container/Container.svelte.d.ts +1 -0
- package/components/date-picker/DatePicker.svelte.d.ts +1 -0
- package/components/details/Details.svelte.d.ts +1 -0
- package/components/divider/Divider.svelte.d.ts +1 -0
- package/components/dropdown/Dropdown.svelte.d.ts +1 -0
- package/components/dropdown/DropdownItem.svelte.d.ts +1 -0
- package/components/file-upload-card/FileUploadCard.svelte.d.ts +1 -0
- package/components/file-upload-input/FileUploadInput.svelte.d.ts +1 -0
- package/components/focus-trap/FocusTrap.svelte.d.ts +1 -0
- package/components/footer/Footer.svelte.d.ts +1 -0
- package/components/footer-meta-section/FooterMetaSection.svelte.d.ts +1 -0
- package/components/footer-nav-section/FooterNavSection.svelte.d.ts +1 -0
- package/components/form-item/FormItem.svelte.d.ts +1 -0
- package/components/form-step/FormStep.svelte.d.ts +1 -0
- package/components/form-stepper/FormStepper.svelte.d.ts +1 -0
- package/components/grid/Grid.svelte.d.ts +1 -0
- package/components/hero-banner/HeroBanner.svelte.d.ts +1 -0
- package/components/icon/Icon.svelte.d.ts +1 -0
- package/components/icon-button/IconButton.svelte.d.ts +1 -0
- package/components/input/Input.svelte.d.ts +1 -0
- package/components/microsite-header/MicrositeHeader.svelte.d.ts +1 -0
- package/components/modal/Modal.svelte.d.ts +1 -0
- package/components/notification/Notification.svelte.d.ts +1 -0
- package/components/page-block/PageBlock.svelte.d.ts +1 -0
- package/components/pages/Pages.svelte.d.ts +1 -0
- package/components/pagination/Pagination.svelte.d.ts +1 -0
- package/components/popover/Popover.svelte.d.ts +1 -0
- package/components/radio-group/RadioGroup.svelte.d.ts +1 -0
- package/components/scrollable/Scrollable.svelte.d.ts +1 -0
- package/components/side-menu/SideMenu.svelte.d.ts +1 -0
- package/components/side-menu-group/SideMenuGroup.svelte.d.ts +1 -0
- package/components/side-menu-heading/SideMenuHeading.svelte.d.ts +1 -0
- package/components/skeleton/Skeleton.svelte.d.ts +1 -0
- package/components/spacer/Spacer.svelte.d.ts +1 -0
- package/components/spinner/Spinner.svelte.d.ts +1 -0
- package/components/tab/Tab.svelte.d.ts +1 -0
- package/components/table/Table.svelte.d.ts +1 -0
- package/components/table/TableSortHeader.svelte.d.ts +1 -0
- package/components/tabs/Tabs.svelte.d.ts +1 -0
- package/components/text-area/TextArea.svelte.d.ts +1 -0
- package/components/tooltip/Tooltip.svelte.d.ts +1 -0
- package/html.html-data.json +1 -1
- package/index.css +1 -1
- package/index.js +19863 -0
- package/index.svelte.d.ts +1 -0
- package/layouts/FullScreenNavbarLayout.svelte.d.ts +1 -0
- package/layouts/one-column-layout/OneColumnLayout.svelte.d.ts +1 -0
- package/layouts/three-column-layout/ThreeColumnLayout.svelte.d.ts +1 -0
- package/layouts/two-column-layout/TwoColumnLayout.svelte.d.ts +1 -0
- package/package.json +11 -33
- package/types/common/breakpoints.d.ts +2 -0
- package/types/common/context-store.d.ts +10 -0
- package/types/common/no-scroll.d.ts +6 -0
- package/types/common/styling.d.ts +17 -0
- package/types/common/styling.spec.d.ts +1 -0
- package/types/common/urls.d.ts +1 -0
- package/types/common/urls.spec.d.ts +1 -0
- package/types/common/utils.d.ts +8 -0
- package/types/common/utils.spec.d.ts +1 -0
- package/types/common/validators.d.ts +1 -0
- package/types/components/accordion/Accordion.d.ts +5 -0
- package/types/components/app-header/AppHeader.d.ts +4 -0
- package/types/components/app-header-menu/AppHeaderMenu.d.ts +4 -0
- package/types/components/badge/Badge.d.ts +5 -0
- package/types/components/block/Block.d.ts +6 -0
- package/types/components/button/Button.d.ts +7 -0
- package/types/components/button-group/ButtonGroup.d.ts +6 -0
- package/types/components/calendar/Calendar.d.ts +4 -0
- package/types/components/callout/Callout.d.ts +6 -0
- package/types/components/card/Card.d.ts +4 -0
- package/types/components/card-actions/CardActions.d.ts +4 -0
- package/types/components/card-content/CardContent.d.ts +4 -0
- package/types/components/card-group/CardGroup.d.ts +4 -0
- package/types/components/card-image/CardImage.d.ts +4 -0
- package/types/components/checkbox/Checkbox.d.ts +4 -0
- package/types/components/chip/Chip.d.ts +5 -0
- package/types/components/circular-progress/CircularProgress.d.ts +6 -0
- package/types/components/container/Container.d.ts +7 -0
- package/types/components/date-picker/DatePicker.d.ts +8 -0
- package/types/components/details/Details.d.ts +4 -0
- package/types/components/divider/Divider.d.ts +4 -0
- package/types/components/dropdown/Dropdown.d.ts +4 -0
- package/types/components/dropdown/DropdownItem.d.ts +4 -0
- package/types/components/file-upload-card/FileUploadCard.d.ts +4 -0
- package/types/components/file-upload-input/FileUploadInput.d.ts +5 -0
- package/types/components/focus-trap/FocusTrap.d.ts +4 -0
- package/types/components/footer/Footer.d.ts +4 -0
- package/types/components/footer-meta-section/FooterMetaSection.d.ts +4 -0
- package/types/components/footer-nav-section/FooterNavSection.d.ts +4 -0
- package/types/components/form-item/FormItem.d.ts +6 -0
- package/types/components/form-step/FormStep.d.ts +5 -0
- package/types/components/form-stepper/FormStepper.d.ts +4 -0
- package/types/components/grid/Grid.d.ts +4 -0
- package/types/components/hero-banner/HeroBanner.d.ts +4 -0
- package/types/components/icon/Icon.d.ts +8 -0
- package/types/components/icon-button/IconButton.d.ts +5 -0
- package/types/components/input/Input.d.ts +7 -0
- package/types/components/microsite-header/MicrositeHeader.d.ts +6 -0
- package/types/components/modal/Modal.d.ts +6 -0
- package/types/components/notification/Notification.d.ts +6 -0
- package/types/components/page-block/PageBlock.d.ts +4 -0
- package/types/components/pages/Pages.d.ts +4 -0
- package/types/components/pagination/Pagination.d.ts +5 -0
- package/types/components/popover/Popover.d.ts +4 -0
- package/types/components/radio-group/RadioGroup.d.ts +5 -0
- package/types/components/scrollable/Scrollable.d.ts +4 -0
- package/types/components/side-menu/SideMenu.d.ts +4 -0
- package/types/components/side-menu-group/SideMenuGroup.d.ts +4 -0
- package/types/components/side-menu-heading/SideMenuHeading.d.ts +4 -0
- package/types/components/skeleton/Skeleton.d.ts +6 -0
- package/types/components/spacer/Spacer.d.ts +6 -0
- package/types/components/spinner/Spinner.d.ts +6 -0
- package/types/components/tab/Tab.d.ts +4 -0
- package/types/components/table/Table.d.ts +5 -0
- package/types/components/table/TableSortHeader.d.ts +5 -0
- package/types/components/tabs/Tabs.d.ts +4 -0
- package/types/components/text-area/TextArea.d.ts +5 -0
- package/types/components/tooltip/Tooltip.d.ts +6 -0
- package/types/layouts/FullScreenNavbarLayout.d.ts +4 -0
- package/types/layouts/one-column-layout/OneColumnLayout.d.ts +4 -0
- package/types/layouts/three-column-layout/ThreeColumnLayout.d.ts +4 -0
- package/types/layouts/two-column-layout/TwoColumnLayout.d.ts +4 -0
- package/types.d.ts +62 -0
- package/web-components.es.js +0 -27492
- package/web-components.umd.js +0 -209
package/README.md
CHANGED
|
@@ -1,13 +1,32 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Web Components
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+

|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This library contains web components from the Government of Alberta.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
```bash
|
|
8
|
+
npm i @abgov/web-components
|
|
9
|
+
```
|
|
8
10
|
|
|
9
|
-
###
|
|
11
|
+
### Icons
|
|
10
12
|
|
|
13
|
+
Link ionicons in app/index.html
|
|
14
|
+
Add the following to the head element
|
|
15
|
+
|
|
16
|
+
```html
|
|
17
|
+
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
|
|
18
|
+
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### Styles
|
|
22
|
+
|
|
23
|
+
Import the web-component styles in the `src/index.css` file
|
|
24
|
+
|
|
25
|
+
```css
|
|
26
|
+
@import "@abgov/web-components/index.css";
|
|
27
|
+
```
|
|
11
28
|
---
|
|
12
29
|
|
|
13
|
-
[Visit Design System](https://
|
|
30
|
+
[Visit Design System](https://design.alberta.ca)
|
|
31
|
+
|
|
32
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponentTyped as default } from 'svelte';
|