@universityofmaryland/web-components-library 1.9.9 → 1.10.0-beta.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 +171 -0
- package/dist/api/card/icon.d.ts.map +1 -1
- package/dist/api/carousel/base.d.ts +0 -18
- package/dist/api/carousel/base.d.ts.map +1 -1
- package/dist/api/carousel/cards.d.ts +0 -18
- package/dist/api/carousel/cards.d.ts.map +1 -1
- package/dist/api/carousel/thumbnail.d.ts +0 -19
- package/dist/api/carousel/thumbnail.d.ts.map +1 -1
- package/dist/api/footer/index.d.ts +1 -1
- package/dist/api/footer/index.d.ts.map +1 -1
- package/dist/api/footer/options.d.ts +15 -0
- package/dist/api/footer/options.d.ts.map +1 -0
- package/dist/api/hero/expand.d.ts +0 -20
- package/dist/api/hero/expand.d.ts.map +1 -1
- package/dist/api/layout/box-logo.d.ts +0 -10
- package/dist/api/layout/box-logo.d.ts.map +1 -1
- package/dist/api/layout/image-expand.d.ts +0 -13
- package/dist/api/layout/image-expand.d.ts.map +1 -1
- package/dist/api/layout/scroll-top.d.ts +0 -10
- package/dist/api/layout/scroll-top.d.ts.map +1 -1
- package/dist/api/layout/section-intro/small.d.ts +0 -13
- package/dist/api/layout/section-intro/small.d.ts.map +1 -1
- package/dist/api/layout/section-intro/wide.d.ts +0 -13
- package/dist/api/layout/section-intro/wide.d.ts.map +1 -1
- package/dist/api/layout/sticky-columns.d.ts +0 -23
- package/dist/api/layout/sticky-columns.d.ts.map +1 -1
- package/dist/api/navigation/breadcrumb.d.ts +0 -13
- package/dist/api/navigation/breadcrumb.d.ts.map +1 -1
- package/dist/api/navigation/sticky.d.ts +0 -10
- package/dist/api/navigation/sticky.d.ts.map +1 -1
- package/dist/api/quote/display.d.ts +0 -10
- package/dist/api/quote/display.d.ts.map +1 -1
- package/dist/api/tab/display.d.ts +0 -19
- package/dist/api/tab/display.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +1 -53
- package/package.json +2 -1
- package/dist/api/footer/base.d.ts +0 -15
- package/dist/api/footer/base.d.ts.map +0 -1
- package/dist/api/footer/elements/index.d.ts +0 -6
- package/dist/api/footer/elements/index.d.ts.map +0 -1
- package/dist/api/footer/elements/main-section/call-to-action.d.ts +0 -6
- package/dist/api/footer/elements/main-section/call-to-action.d.ts.map +0 -1
- package/dist/api/footer/elements/main-section/campaign.d.ts +0 -7
- package/dist/api/footer/elements/main-section/campaign.d.ts.map +0 -1
- package/dist/api/footer/elements/main-section/index.d.ts +0 -6
- package/dist/api/footer/elements/main-section/index.d.ts.map +0 -1
- package/dist/api/footer/elements/main-section/row-links/index.d.ts +0 -8
- package/dist/api/footer/elements/main-section/row-links/index.d.ts.map +0 -1
- package/dist/api/footer/elements/main-section/row-links/link-columns.d.ts +0 -5
- package/dist/api/footer/elements/main-section/row-links/link-columns.d.ts.map +0 -1
- package/dist/api/footer/elements/main-section/row-logo/contact.d.ts +0 -6
- package/dist/api/footer/elements/main-section/row-logo/contact.d.ts.map +0 -1
- package/dist/api/footer/elements/main-section/row-logo/index.d.ts +0 -6
- package/dist/api/footer/elements/main-section/row-logo/index.d.ts.map +0 -1
- package/dist/api/footer/elements/main-section/row-logo/logo.d.ts +0 -6
- package/dist/api/footer/elements/main-section/row-logo/logo.d.ts.map +0 -1
- package/dist/api/footer/elements/main-section/social.d.ts +0 -7
- package/dist/api/footer/elements/main-section/social.d.ts.map +0 -1
- package/dist/api/footer/elements/utility-section/index.d.ts +0 -5
- package/dist/api/footer/elements/utility-section/index.d.ts.map +0 -1
- package/dist/api/footer/globals.d.ts +0 -38
- package/dist/api/footer/globals.d.ts.map +0 -1
package/README.md
ADDED
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
# University of Maryland Web Components Library
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@universityofmaryland/web-components-library)
|
|
4
|
+
|
|
5
|
+
High-level web components built from the elements library for interfaces, interactivity, layout, and data feeds. This library provides ready-to-use web components that follow the University of Maryland's design guidelines and accessibility standards. These components are designed to work seamlessly together to create consistent, branded UMD web experiences while maintaining performance and usability across all devices.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# Using npm
|
|
11
|
+
npm install @universityofmaryland/web-components-library
|
|
12
|
+
|
|
13
|
+
# Using yarn
|
|
14
|
+
yarn add @universityofmaryland/web-components-library
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
### Loading All Components
|
|
20
|
+
|
|
21
|
+
The simplest way to use the components is to load all of them at once. This approach is ideal for applications that use many UMD components.
|
|
22
|
+
|
|
23
|
+
```javascript
|
|
24
|
+
import LoadUmdComponents from '@universityofmaryland/web-components-library';
|
|
25
|
+
|
|
26
|
+
document.addEventListener('DOMContentLoaded', () => {
|
|
27
|
+
LoadUmdComponents();
|
|
28
|
+
// All components are now registered and available in the DOM
|
|
29
|
+
});
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Tree-Shaking (Loading Individual Components)
|
|
33
|
+
|
|
34
|
+
For better performance, you can import only the components you need:
|
|
35
|
+
|
|
36
|
+
```javascript
|
|
37
|
+
import { card, navigation, hero } from '@universityofmaryland/web-components-library/Components';
|
|
38
|
+
|
|
39
|
+
// Initialize specific components
|
|
40
|
+
card.standard();
|
|
41
|
+
navigation.header();
|
|
42
|
+
hero.minimal();
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Available Components
|
|
46
|
+
|
|
47
|
+
The library includes a wide range of components organized by type:
|
|
48
|
+
|
|
49
|
+
### Layout Components
|
|
50
|
+
- `layout.boxLogo` - Box with logo layout
|
|
51
|
+
- `layout.imageExpand` - Expandable image layout
|
|
52
|
+
- `layout.modal` - Modal dialog
|
|
53
|
+
- `layout.scrollTop` - Scroll to top button
|
|
54
|
+
- `layout.stickyColumns` - Sticky columns layout
|
|
55
|
+
|
|
56
|
+
### UI Components
|
|
57
|
+
- `accordion` - Collapsible content panels
|
|
58
|
+
- `actions` - Action buttons and links
|
|
59
|
+
- `alert` - Alert notifications
|
|
60
|
+
- `card` - Various card styles (standard, article, overlay)
|
|
61
|
+
- `carousel` - Image and content carousels
|
|
62
|
+
- `hero` - Hero sections (standard, minimal, expand, logo)
|
|
63
|
+
- `navigation` - Navigation components (header, drawer, breadcrumb)
|
|
64
|
+
- `person` - Person/profile components
|
|
65
|
+
- `quote` - Quote/testimonial components
|
|
66
|
+
- `stat` - Statistics display
|
|
67
|
+
- `tab` - Tabbed interface
|
|
68
|
+
- `text` - Text components
|
|
69
|
+
|
|
70
|
+
### Example Usage
|
|
71
|
+
|
|
72
|
+
#### Card Component
|
|
73
|
+
|
|
74
|
+
```html
|
|
75
|
+
<umd-element-card>
|
|
76
|
+
<img slot="image" src="path/to/image.jpg" alt="Card image">
|
|
77
|
+
<p slot="eyebrow">Category</p>
|
|
78
|
+
<h3 slot="headline">Card Title</h3>
|
|
79
|
+
<p slot="text">Card description text goes here with details about the card content.</p>
|
|
80
|
+
<div slot="actions">
|
|
81
|
+
<a href="#">Learn More</a>
|
|
82
|
+
</div>
|
|
83
|
+
</umd-element-card>
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
#### Navigation Component
|
|
87
|
+
|
|
88
|
+
```html
|
|
89
|
+
<umd-element-navigation>
|
|
90
|
+
<div slot="logo">
|
|
91
|
+
<img src="path/to/logo.svg" alt="UMD Logo">
|
|
92
|
+
</div>
|
|
93
|
+
<ul slot="items">
|
|
94
|
+
<li><a href="#">Home</a></li>
|
|
95
|
+
<li><a href="#">About</a></li>
|
|
96
|
+
<li><a href="#">Services</a></li>
|
|
97
|
+
<li><a href="#">Contact</a></li>
|
|
98
|
+
</ul>
|
|
99
|
+
</umd-element-navigation>
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## Advanced Configuration
|
|
103
|
+
|
|
104
|
+
Components can be customized using attributes:
|
|
105
|
+
|
|
106
|
+
```html
|
|
107
|
+
<umd-element-card is-theme-dark is-visual-aligned>
|
|
108
|
+
<!-- Card content -->
|
|
109
|
+
</umd-element-card>
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
Common attributes include:
|
|
113
|
+
- `is-theme-dark` - Sets dark theme
|
|
114
|
+
- `is-visual-aligned` - Sets content alignment
|
|
115
|
+
- `is-visual-transparent` - Makes background transparent
|
|
116
|
+
- `is-visual-bordered` - Adds border to component
|
|
117
|
+
- `is-animated` - Enables animations for the component
|
|
118
|
+
- `is-responsive` - Adjusts layout based on viewport size (enabled by default)
|
|
119
|
+
|
|
120
|
+
You can also configure components through JavaScript:
|
|
121
|
+
|
|
122
|
+
```javascript
|
|
123
|
+
// Select an existing component
|
|
124
|
+
const cardElement = document.querySelector('umd-element-card');
|
|
125
|
+
|
|
126
|
+
// Configure through properties
|
|
127
|
+
cardElement.isThemeDark = true;
|
|
128
|
+
cardElement.isVisualAligned = true;
|
|
129
|
+
|
|
130
|
+
// Or use the configure method
|
|
131
|
+
cardElement.configure({
|
|
132
|
+
isThemeDark: true,
|
|
133
|
+
isVisualAligned: true,
|
|
134
|
+
customData: { category: 'Featured' }
|
|
135
|
+
});
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
## Browser Support
|
|
139
|
+
|
|
140
|
+
The UMD Web Components Library supports all modern browsers that support Web Components, including:
|
|
141
|
+
- Chrome
|
|
142
|
+
- Firefox
|
|
143
|
+
- Safari
|
|
144
|
+
- Edge
|
|
145
|
+
|
|
146
|
+
## Dependencies
|
|
147
|
+
|
|
148
|
+
This library depends on:
|
|
149
|
+
- `@universityofmaryland/web-elements-library` - For foundational UI elements
|
|
150
|
+
- `@universityofmaryland/web-styles-library` - For styling and theming
|
|
151
|
+
|
|
152
|
+
## Accessibility
|
|
153
|
+
|
|
154
|
+
All components in this library are designed with accessibility in mind:
|
|
155
|
+
- WCAG 2.1 AA compliant
|
|
156
|
+
- Keyboard navigable interfaces
|
|
157
|
+
- Screen reader friendly with proper ARIA attributes
|
|
158
|
+
- Focus management for interactive elements
|
|
159
|
+
- Color contrast that meets accessibility standards
|
|
160
|
+
|
|
161
|
+
## Documentation
|
|
162
|
+
|
|
163
|
+
For complete documentation of all available components and their options, see the [official UMD Design System documentation](https://umd-digital.github.io/design-system/).
|
|
164
|
+
|
|
165
|
+
## Contributing
|
|
166
|
+
|
|
167
|
+
For contribution guidelines, please refer to the main repository README.
|
|
168
|
+
|
|
169
|
+
## License
|
|
170
|
+
|
|
171
|
+
This project is licensed under the University of Maryland license.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon.d.ts","sourceRoot":"","sources":["../../../source/api/card/icon.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"icon.d.ts","sourceRoot":"","sources":["../../../source/api/card/icon.ts"],"names":[],"mappings":";AAuBA,wBASE"}
|
|
@@ -1,21 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDCarouselElement: typeof UMDCarouselElement;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
declare class UMDCarouselElement extends HTMLElement {
|
|
7
|
-
_shadow: ShadowRoot;
|
|
8
|
-
_elementRef: {
|
|
9
|
-
element: HTMLDivElement;
|
|
10
|
-
events: {
|
|
11
|
-
resize: () => void;
|
|
12
|
-
};
|
|
13
|
-
} | null;
|
|
14
|
-
constructor();
|
|
15
|
-
static get observedAttributes(): string[];
|
|
16
|
-
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
|
|
17
|
-
connectedCallback(): void;
|
|
18
|
-
}
|
|
19
1
|
declare const _default: () => void;
|
|
20
2
|
export default _default;
|
|
21
3
|
//# sourceMappingURL=base.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../source/api/carousel/base.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../source/api/carousel/base.ts"],"names":[],"mappings":";AA8EA,wBAWE"}
|
|
@@ -1,21 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDCarouselCardsElement: typeof UMDCarouselCardsElement;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
declare class UMDCarouselCardsElement extends HTMLElement {
|
|
7
|
-
_shadow: ShadowRoot;
|
|
8
|
-
_elementRef: {
|
|
9
|
-
element: HTMLDivElement;
|
|
10
|
-
events: {
|
|
11
|
-
SetEventReize: () => void;
|
|
12
|
-
};
|
|
13
|
-
} | null;
|
|
14
|
-
constructor();
|
|
15
|
-
static get observedAttributes(): string[];
|
|
16
|
-
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
|
|
17
|
-
connectedCallback(): void;
|
|
18
|
-
}
|
|
19
1
|
declare const _default: () => void;
|
|
20
2
|
export default _default;
|
|
21
3
|
//# sourceMappingURL=cards.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cards.d.ts","sourceRoot":"","sources":["../../../source/api/carousel/cards.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"cards.d.ts","sourceRoot":"","sources":["../../../source/api/carousel/cards.ts"],"names":[],"mappings":";AAgDA,wBAWE"}
|
|
@@ -1,22 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDCarouselThumbnailElement: typeof UMDCarouselThumbnailElement;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
declare class UMDCarouselThumbnailElement extends HTMLElement {
|
|
7
|
-
_shadow: ShadowRoot;
|
|
8
|
-
_elementRef: {
|
|
9
|
-
element: HTMLDivElement;
|
|
10
|
-
events: {
|
|
11
|
-
SetEventReize: () => void;
|
|
12
|
-
Load: () => void;
|
|
13
|
-
};
|
|
14
|
-
} | null;
|
|
15
|
-
constructor();
|
|
16
|
-
static get observedAttributes(): string[];
|
|
17
|
-
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
|
|
18
|
-
connectedCallback(): void;
|
|
19
|
-
}
|
|
20
1
|
declare const _default: () => void;
|
|
21
2
|
export default _default;
|
|
22
3
|
//# sourceMappingURL=thumbnail.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"thumbnail.d.ts","sourceRoot":"","sources":["../../../source/api/carousel/thumbnail.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"thumbnail.d.ts","sourceRoot":"","sources":["../../../source/api/carousel/thumbnail.ts"],"names":[],"mappings":";AAgCA,wBAWE"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as options } from './options';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../source/api/footer/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../source/api/footer/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const SLOTS: {
|
|
2
|
+
BACKGROUND_IMAGE: string;
|
|
3
|
+
CONTACT_HEADLINE: string;
|
|
4
|
+
CONTACT_LINKS: string;
|
|
5
|
+
CONTACT_ADDRESS: string;
|
|
6
|
+
CTA: string;
|
|
7
|
+
SOCIAL: string;
|
|
8
|
+
UTILITY: string;
|
|
9
|
+
LINK_COLUMN_ONE: string;
|
|
10
|
+
LINK_COLUMN_TWO: string;
|
|
11
|
+
LINK_COLUMN_THREE: string;
|
|
12
|
+
};
|
|
13
|
+
declare const _default: () => void;
|
|
14
|
+
export default _default;
|
|
15
|
+
//# sourceMappingURL=options.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"options.d.ts","sourceRoot":"","sources":["../../../source/api/footer/options.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,KAAK;;;;;;;;;;;CAWjB,CAAC;;AAmEF,wBASE"}
|
|
@@ -1,23 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDHeroExpandElement: typeof UMDHeroExpandElement;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
export declare class UMDHeroExpandElement extends HTMLElement {
|
|
7
|
-
_shadow: ShadowRoot;
|
|
8
|
-
_elementRef: {
|
|
9
|
-
element: HTMLDivElement;
|
|
10
|
-
events: {
|
|
11
|
-
SetPosition: ({ value }: {
|
|
12
|
-
value: string | null;
|
|
13
|
-
}) => void;
|
|
14
|
-
};
|
|
15
|
-
} | null;
|
|
16
|
-
constructor();
|
|
17
|
-
static get observedAttributes(): string[];
|
|
18
|
-
attributeChangedCallback(name: string): void;
|
|
19
|
-
connectedCallback(): void;
|
|
20
|
-
}
|
|
21
1
|
declare const _default: () => void;
|
|
22
2
|
export default _default;
|
|
23
3
|
//# sourceMappingURL=expand.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"expand.d.ts","sourceRoot":"","sources":["../../../source/api/hero/expand.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"expand.d.ts","sourceRoot":"","sources":["../../../source/api/hero/expand.ts"],"names":[],"mappings":";AAqEA,wBAiBE"}
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDLogoElement: typeof UMDLogoElement;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
declare class UMDLogoElement extends HTMLElement {
|
|
7
|
-
_shadow: ShadowRoot;
|
|
8
|
-
constructor();
|
|
9
|
-
connectedCallback(): void;
|
|
10
|
-
}
|
|
11
1
|
declare const _default: () => void;
|
|
12
2
|
export default _default;
|
|
13
3
|
//# sourceMappingURL=box-logo.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"box-logo.d.ts","sourceRoot":"","sources":["../../../source/api/layout/box-logo.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"box-logo.d.ts","sourceRoot":"","sources":["../../../source/api/layout/box-logo.ts"],"names":[],"mappings":";AAuBA,wBASE"}
|
|
@@ -1,16 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDLayoutImageExpand: typeof UMDLayoutImageExpand;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
export declare const CreateShadowDom: ({ element, }: {
|
|
7
|
-
element: UMDLayoutImageExpand;
|
|
8
|
-
}) => void;
|
|
9
|
-
export declare class UMDLayoutImageExpand extends HTMLElement {
|
|
10
|
-
_shadow: ShadowRoot;
|
|
11
|
-
constructor();
|
|
12
|
-
connectedCallback(): void;
|
|
13
|
-
}
|
|
14
1
|
declare const _default: () => void;
|
|
15
2
|
export default _default;
|
|
16
3
|
//# sourceMappingURL=image-expand.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image-expand.d.ts","sourceRoot":"","sources":["../../../source/api/layout/image-expand.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"image-expand.d.ts","sourceRoot":"","sources":["../../../source/api/layout/image-expand.ts"],"names":[],"mappings":";AAwBA,wBASE"}
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDScrollTopElement: typeof UMDScrollTopElement;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
declare class UMDScrollTopElement extends HTMLElement {
|
|
7
|
-
_shadow: ShadowRoot;
|
|
8
|
-
constructor();
|
|
9
|
-
connectedCallback(): void;
|
|
10
|
-
}
|
|
11
1
|
declare const _default: () => void;
|
|
12
2
|
export default _default;
|
|
13
3
|
//# sourceMappingURL=scroll-top.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scroll-top.d.ts","sourceRoot":"","sources":["../../../source/api/layout/scroll-top.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"scroll-top.d.ts","sourceRoot":"","sources":["../../../source/api/layout/scroll-top.ts"],"names":[],"mappings":";AAUA,wBASE"}
|
|
@@ -1,16 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDSectionIntroElement: typeof UMDSectionIntroElement;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
export declare const CreateShadowDom: ({ element, }: {
|
|
7
|
-
element: UMDSectionIntroElement;
|
|
8
|
-
}) => void;
|
|
9
|
-
export declare class UMDSectionIntroElement extends HTMLElement {
|
|
10
|
-
_shadow: ShadowRoot;
|
|
11
|
-
constructor();
|
|
12
|
-
connectedCallback(): void;
|
|
13
|
-
}
|
|
14
1
|
declare const _default: () => void;
|
|
15
2
|
export default _default;
|
|
16
3
|
//# sourceMappingURL=small.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"small.d.ts","sourceRoot":"","sources":["../../../../source/api/layout/section-intro/small.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"small.d.ts","sourceRoot":"","sources":["../../../../source/api/layout/section-intro/small.ts"],"names":[],"mappings":";AAiBA,wBAiBE"}
|
|
@@ -1,16 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDSectionIntroWideElement: typeof UMDSectionIntroWideElement;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
export declare const CreateShadowDom: ({ element, }: {
|
|
7
|
-
element: UMDSectionIntroWideElement;
|
|
8
|
-
}) => void;
|
|
9
|
-
export declare class UMDSectionIntroWideElement extends HTMLElement {
|
|
10
|
-
_shadow: ShadowRoot;
|
|
11
|
-
constructor();
|
|
12
|
-
connectedCallback(): void;
|
|
13
|
-
}
|
|
14
1
|
declare const _default: () => void;
|
|
15
2
|
export default _default;
|
|
16
3
|
//# sourceMappingURL=wide.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wide.d.ts","sourceRoot":"","sources":["../../../../source/api/layout/section-intro/wide.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"wide.d.ts","sourceRoot":"","sources":["../../../../source/api/layout/section-intro/wide.ts"],"names":[],"mappings":";AAaA,wBAQE"}
|
|
@@ -1,26 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDStickyColumnElement: typeof UMDStickyColumnElement;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
export declare const CreateShadowDom: ({ element, }: {
|
|
7
|
-
element: UMDStickyColumnElement;
|
|
8
|
-
}) => HTMLDivElement;
|
|
9
|
-
export declare class UMDStickyColumnElement extends HTMLElement {
|
|
10
|
-
_shadow: ShadowRoot;
|
|
11
|
-
_elementRef: {
|
|
12
|
-
element: HTMLDivElement;
|
|
13
|
-
events: {
|
|
14
|
-
SetPosition: ({ value }: {
|
|
15
|
-
value: string | null;
|
|
16
|
-
}) => void;
|
|
17
|
-
};
|
|
18
|
-
} | null;
|
|
19
|
-
constructor();
|
|
20
|
-
static get observedAttributes(): string[];
|
|
21
|
-
attributeChangedCallback(name: string): void;
|
|
22
|
-
connectedCallback(): void;
|
|
23
|
-
}
|
|
24
1
|
declare const _default: () => void;
|
|
25
2
|
export default _default;
|
|
26
3
|
//# sourceMappingURL=sticky-columns.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sticky-columns.d.ts","sourceRoot":"","sources":["../../../source/api/layout/sticky-columns.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"sticky-columns.d.ts","sourceRoot":"","sources":["../../../source/api/layout/sticky-columns.ts"],"names":[],"mappings":";AAwCA,wBAUE"}
|
|
@@ -1,16 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDBreadcrumbElement: typeof UMDBreadcrumbElement;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
export declare const CreateShadowDom: ({ element, }: {
|
|
7
|
-
element: UMDBreadcrumbElement;
|
|
8
|
-
}) => void;
|
|
9
|
-
declare class UMDBreadcrumbElement extends HTMLElement {
|
|
10
|
-
_shadow: ShadowRoot;
|
|
11
|
-
constructor();
|
|
12
|
-
connectedCallback(): void;
|
|
13
|
-
}
|
|
14
1
|
declare const _default: () => void;
|
|
15
2
|
export default _default;
|
|
16
3
|
//# sourceMappingURL=breadcrumb.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"breadcrumb.d.ts","sourceRoot":"","sources":["../../../source/api/navigation/breadcrumb.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"breadcrumb.d.ts","sourceRoot":"","sources":["../../../source/api/navigation/breadcrumb.ts"],"names":[],"mappings":";AA6BA,wBASE"}
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDHeaderStickyElement: typeof UMDHeaderStickyElement;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
declare class UMDHeaderStickyElement extends HTMLElement {
|
|
7
|
-
_shadow: ShadowRoot;
|
|
8
|
-
constructor();
|
|
9
|
-
connectedCallback(): void;
|
|
10
|
-
}
|
|
11
1
|
declare const _default: () => void;
|
|
12
2
|
export default _default;
|
|
13
3
|
//# sourceMappingURL=sticky.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sticky.d.ts","sourceRoot":"","sources":["../../../source/api/navigation/sticky.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"sticky.d.ts","sourceRoot":"","sources":["../../../source/api/navigation/sticky.ts"],"names":[],"mappings":";AAkBA,wBASE"}
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDElementQuote: typeof UMDElementQuote;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
export declare class UMDElementQuote extends HTMLElement {
|
|
7
|
-
_shadow: ShadowRoot;
|
|
8
|
-
constructor();
|
|
9
|
-
connectedCallback(): void;
|
|
10
|
-
}
|
|
11
1
|
declare const _default: () => void;
|
|
12
2
|
export default _default;
|
|
13
3
|
//# sourceMappingURL=display.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"display.d.ts","sourceRoot":"","sources":["../../../source/api/quote/display.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"display.d.ts","sourceRoot":"","sources":["../../../source/api/quote/display.ts"],"names":[],"mappings":";AA0DA,wBASE"}
|
|
@@ -1,22 +1,3 @@
|
|
|
1
|
-
declare global {
|
|
2
|
-
interface Window {
|
|
3
|
-
UMDTabsElement: typeof UMDTabsElement;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
declare class UMDTabsElement extends HTMLElement {
|
|
7
|
-
_shadow: ShadowRoot;
|
|
8
|
-
_elementRef: {
|
|
9
|
-
element: HTMLDivElement;
|
|
10
|
-
events: {
|
|
11
|
-
resize: () => void;
|
|
12
|
-
load: () => void;
|
|
13
|
-
};
|
|
14
|
-
} | null;
|
|
15
|
-
constructor();
|
|
16
|
-
static get observedAttributes(): string[];
|
|
17
|
-
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
18
|
-
connectedCallback(): void;
|
|
19
|
-
}
|
|
20
1
|
declare const _default: () => void;
|
|
21
2
|
export default _default;
|
|
22
3
|
//# sourceMappingURL=display.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"display.d.ts","sourceRoot":"","sources":["../../../source/api/tab/display.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"display.d.ts","sourceRoot":"","sources":["../../../source/api/tab/display.ts"],"names":[],"mappings":";AAwDA,wBAWE"}
|