@hotosm/ui 0.2.0-b4 → 0.2.0-b5
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 +98 -106
- package/components/header/header.styles.ts +103 -0
- package/components/header/header.ts +117 -194
- package/components/icons.ts +1 -1
- package/components/index.ts +68 -62
- package/components/logo/logo.styles.ts +8 -0
- package/components/logo/logo.ts +37 -0
- package/components/react/Header.ts +16 -0
- package/components/react/Logo.ts +15 -0
- package/components/react/Toolbar.ts +24 -0
- package/components/react/Tracking.ts +17 -0
- package/components/react/index.ts +63 -0
- package/components/toolbar/toolbar.styles.ts +6 -0
- package/components/toolbar/toolbar.ts +100 -57
- package/components/tracking/tracking.styles.ts +23 -0
- package/components/tracking/tracking.ts +89 -85
- package/dist/components/header/header.d.ts +28 -0
- package/dist/components/header/header.styles.d.ts +6 -0
- package/dist/components/index.d.ts +130 -0
- package/dist/components/logo/logo.d.ts +10 -0
- package/dist/components/logo/logo.styles.d.ts +2 -0
- package/dist/components/react/Tracking.d.ts +2 -0
- package/dist/components/react/index.d.ts +62 -0
- package/dist/components/toolbar/toolbar.d.ts +20 -0
- package/dist/components/toolbar/toolbar.styles.d.ts +2 -0
- package/{components → dist/components}/tracking/tracking.d.ts +8 -9
- package/dist/components/tracking/tracking.styles.d.ts +2 -0
- package/dist/{components.js → hotosm-ui.js} +4013 -3755
- package/dist/style.css +1 -1
- package/package.json +25 -24
- package/theme/hot-sl.css +194 -0
- package/theme/hot.css +191 -121
- package/theme/logo/hot-logo-icon.svg +1 -0
- package/theme/logo/hot-logo-png.png +0 -0
- package/theme/logo/hot-logo-text.svg +1 -0
- package/components/header/header.d.ts +0 -30
- package/components/header/header.js +0 -237
- package/components/icons.js +0 -78
- package/components/index.d.ts +0 -127
- package/components/index.js +0 -127
- package/components/toolbar/toolbar.d.ts +0 -24
- package/components/toolbar/toolbar.js +0 -121
- package/components/tracking/tracking.js +0 -164
- package/react/Header.js +0 -14
- package/react/Toolbar.js +0 -21
- package/react/Tracking.js +0 -15
- package/react/index.d.ts +0 -3
- package/react/index.js +0 -5
- package/theme/logo.png +0 -0
- package/theme/sl-custom.css +0 -74
- /package/{components → dist/components}/icons.d.ts +0 -0
- /package/{react → dist/components/react}/Header.d.ts +0 -0
- /package/{react/Toolbar.d.ts → dist/components/react/Logo.d.ts} +0 -0
- /package/{react/Tracking.d.ts → dist/components/react/Toolbar.d.ts} +0 -0
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { setBasePath } from '@shoelace-style/shoelace/dist/utilities/base-path.js';
|
|
2
|
+
import { default as SlAlert } from '@shoelace-style/shoelace/dist/components/alert/alert.component.js';
|
|
3
|
+
import { default as SlAnimatedImage } from '@shoelace-style/shoelace/dist/components/animated-image/animated-image.component.js';
|
|
4
|
+
import { default as SlAnimation } from '@shoelace-style/shoelace/dist/components/animation/animation.component.js';
|
|
5
|
+
import { default as SlAvatar } from '@shoelace-style/shoelace/dist/components/avatar/avatar.component.js';
|
|
6
|
+
import { default as SlBadge } from '@shoelace-style/shoelace/dist/components/badge/badge.component.js';
|
|
7
|
+
import { default as SlBreadcrumb } from '@shoelace-style/shoelace/dist/components/breadcrumb/breadcrumb.component.js';
|
|
8
|
+
import { default as SlBreadcrumbItem } from '@shoelace-style/shoelace/dist/components/breadcrumb-item/breadcrumb-item.component.js';
|
|
9
|
+
import { default as SlButton } from '@shoelace-style/shoelace/dist/components/button/button.component.js';
|
|
10
|
+
import { default as SlButtonGroup } from '@shoelace-style/shoelace/dist/components/button-group/button-group.component.js';
|
|
11
|
+
import { default as SlCard } from '@shoelace-style/shoelace/dist/components/card/card.component.js';
|
|
12
|
+
import { default as SlCarousel } from '@shoelace-style/shoelace/dist/components/carousel/carousel.component.js';
|
|
13
|
+
import { default as SlCarouselItem } from '@shoelace-style/shoelace/dist/components/carousel-item/carousel-item.component.js';
|
|
14
|
+
import { default as SlCheckbox } from '@shoelace-style/shoelace/dist/components/checkbox/checkbox.component.js';
|
|
15
|
+
import { default as SlColorPicker } from '@shoelace-style/shoelace/dist/components/color-picker/color-picker.component.js';
|
|
16
|
+
import { default as SlCopyButton } from '@shoelace-style/shoelace/dist/components/copy-button/copy-button.component.js';
|
|
17
|
+
import { default as SlDetails } from '@shoelace-style/shoelace/dist/components/details/details.component.js';
|
|
18
|
+
import { default as SlDialog } from '@shoelace-style/shoelace/dist/components/dialog/dialog.component.js';
|
|
19
|
+
import { default as SlDivider } from '@shoelace-style/shoelace/dist/components/divider/divider.component.js';
|
|
20
|
+
import { default as SlDrawer } from '@shoelace-style/shoelace/dist/components/drawer/drawer.component.js';
|
|
21
|
+
import { default as SlDropdown } from '@shoelace-style/shoelace/dist/components/dropdown/dropdown.component.js';
|
|
22
|
+
import { default as SlFormatBytes } from '@shoelace-style/shoelace/dist/components/format-bytes/format-bytes.component.js';
|
|
23
|
+
import { default as SlFormatDate } from '@shoelace-style/shoelace/dist/components/format-date/format-date.component.js';
|
|
24
|
+
import { default as SlFormatNumber } from '@shoelace-style/shoelace/dist/components/format-number/format-number.component.js';
|
|
25
|
+
import { default as SlIcon } from '@shoelace-style/shoelace/dist/components/icon/icon.component.js';
|
|
26
|
+
import { default as SlIconButton } from '@shoelace-style/shoelace/dist/components/icon-button/icon-button.component.js';
|
|
27
|
+
import { default as SlImageComparer } from '@shoelace-style/shoelace/dist/components/image-comparer/image-comparer.component.js';
|
|
28
|
+
import { default as SlInclude } from '@shoelace-style/shoelace/dist/components/include/include.component.js';
|
|
29
|
+
import { default as SlInput } from '@shoelace-style/shoelace/dist/components/input/input.component.js';
|
|
30
|
+
import { default as SlMenu } from '@shoelace-style/shoelace/dist/components/menu/menu.component.js';
|
|
31
|
+
import { default as SlMenuItem } from '@shoelace-style/shoelace/dist/components/menu-item/menu-item.component.js';
|
|
32
|
+
import { default as SlMenuLabel } from '@shoelace-style/shoelace/dist/components/menu-label/menu-label.component.js';
|
|
33
|
+
import { default as SlMutationObserver } from '@shoelace-style/shoelace/dist/components/mutation-observer/mutation-observer.component.js';
|
|
34
|
+
import { default as SlOption } from '@shoelace-style/shoelace/dist/components/option/option.component.js';
|
|
35
|
+
import { default as SlPopup } from '@shoelace-style/shoelace/dist/components/popup/popup.component.js';
|
|
36
|
+
import { default as SlProgressBar } from '@shoelace-style/shoelace/dist/components/progress-bar/progress-bar.component.js';
|
|
37
|
+
import { default as SlProgressRing } from '@shoelace-style/shoelace/dist/components/progress-ring/progress-ring.component.js';
|
|
38
|
+
import { default as SlQRCode } from '@shoelace-style/shoelace/dist/components/qr-code/qr-code.component.js';
|
|
39
|
+
import { default as SlRadio } from '@shoelace-style/shoelace/dist/components/radio/radio.component.js';
|
|
40
|
+
import { default as SlRadioButton } from '@shoelace-style/shoelace/dist/components/radio-button/radio-button.component.js';
|
|
41
|
+
import { default as SlRadioGroup } from '@shoelace-style/shoelace/dist/components/radio-group/radio-group.component.js';
|
|
42
|
+
import { default as SlRange } from '@shoelace-style/shoelace/dist/components/range/range.component.js';
|
|
43
|
+
import { default as SlRating } from '@shoelace-style/shoelace/dist/components/rating/rating.component.js';
|
|
44
|
+
import { default as SlRelativeTime } from '@shoelace-style/shoelace/dist/components/relative-time/relative-time.component.js';
|
|
45
|
+
import { default as SlResizeObserver } from '@shoelace-style/shoelace/dist/components/resize-observer/resize-observer.component.js';
|
|
46
|
+
import { default as SlSelect } from '@shoelace-style/shoelace/dist/components/select/select.component.js';
|
|
47
|
+
import { default as SlSkeleton } from '@shoelace-style/shoelace/dist/components/skeleton/skeleton.component.js';
|
|
48
|
+
import { default as SlSpinner } from '@shoelace-style/shoelace/dist/components/spinner/spinner.component.js';
|
|
49
|
+
import { default as SlSplitPanel } from '@shoelace-style/shoelace/dist/components/split-panel/split-panel.component.js';
|
|
50
|
+
import { default as SlSwitch } from '@shoelace-style/shoelace/dist/components/switch/switch.component.js';
|
|
51
|
+
import { default as SlTab } from '@shoelace-style/shoelace/dist/components/tab/tab.component.js';
|
|
52
|
+
import { default as SlTabGroup } from '@shoelace-style/shoelace/dist/components/tab-group/tab-group.component.js';
|
|
53
|
+
import { default as SlTabPanel } from '@shoelace-style/shoelace/dist/components/tab-panel/tab-panel.component.js';
|
|
54
|
+
import { default as SlTag } from '@shoelace-style/shoelace/dist/components/tag/tag.component.js';
|
|
55
|
+
import { default as SlTextarea } from '@shoelace-style/shoelace/dist/components/textarea/textarea.component.js';
|
|
56
|
+
import { default as SlTooltip } from '@shoelace-style/shoelace/dist/components/tooltip/tooltip.component.js';
|
|
57
|
+
import { default as SlTree } from '@shoelace-style/shoelace/dist/components/tree/tree.component.js';
|
|
58
|
+
import { default as SlTreeItem } from '@shoelace-style/shoelace/dist/components/tree-item/tree-item.component.js';
|
|
59
|
+
import { default as SlVisuallyHidden } from '@shoelace-style/shoelace/dist/components/visually-hidden/visually-hidden.component.js';
|
|
60
|
+
import { default as HotHeader } from './header/header';
|
|
61
|
+
import { default as HotLogo } from './logo/logo';
|
|
62
|
+
import { default as HotToolbar } from './toolbar/toolbar';
|
|
63
|
+
import { default as HotTracking } from './tracking/tracking';
|
|
64
|
+
|
|
65
|
+
declare global {
|
|
66
|
+
interface HTMLElementTagNameMap {
|
|
67
|
+
'hot-alert': SlAlert;
|
|
68
|
+
'hot-animated-image': SlAnimatedImage;
|
|
69
|
+
'hot-animation': SlAnimation;
|
|
70
|
+
'hot-avatar': SlAvatar;
|
|
71
|
+
'hot-badge': SlBadge;
|
|
72
|
+
'hot-breadcrumb': SlBreadcrumb;
|
|
73
|
+
'hot-breadcrumb-item': SlBreadcrumbItem;
|
|
74
|
+
'hot-button': SlButton;
|
|
75
|
+
'hot-button-group': SlButtonGroup;
|
|
76
|
+
'hot-card': SlCard;
|
|
77
|
+
'hot-carousel': SlCarousel;
|
|
78
|
+
'hot-carousel-item': SlCarouselItem;
|
|
79
|
+
'hot-checkbox': SlCheckbox;
|
|
80
|
+
'hot-color-picker': SlColorPicker;
|
|
81
|
+
'hot-copy-button': SlCopyButton;
|
|
82
|
+
'hot-details': SlDetails;
|
|
83
|
+
'hot-dialog': SlDialog;
|
|
84
|
+
'hot-divider': SlDivider;
|
|
85
|
+
'hot-drawer': SlDrawer;
|
|
86
|
+
'hot-dropdown': SlDropdown;
|
|
87
|
+
'hot-format-bytes': SlFormatBytes;
|
|
88
|
+
'hot-format-date': SlFormatDate;
|
|
89
|
+
'hot-format-number': SlFormatNumber;
|
|
90
|
+
'hot-icon': SlIcon;
|
|
91
|
+
'hot-icon-button': SlIconButton;
|
|
92
|
+
'hot-image-comparer': SlImageComparer;
|
|
93
|
+
'hot-include': SlInclude;
|
|
94
|
+
'hot-input': SlInput;
|
|
95
|
+
'hot-menu': SlMenu;
|
|
96
|
+
'hot-menu-item': SlMenuItem;
|
|
97
|
+
'hot-menu-label': SlMenuLabel;
|
|
98
|
+
'hot-mutation-observer': SlMutationObserver;
|
|
99
|
+
'hot-option': SlOption;
|
|
100
|
+
'hot-popup': SlPopup;
|
|
101
|
+
'hot-progress-bar': SlProgressBar;
|
|
102
|
+
'hot-progress-ring': SlProgressRing;
|
|
103
|
+
'hot-qrcode': SlQRCode;
|
|
104
|
+
'hot-radio': SlRadio;
|
|
105
|
+
'hot-radio-button': SlRadioButton;
|
|
106
|
+
'hot-radio-group': SlRadioGroup;
|
|
107
|
+
'hot-range': SlRange;
|
|
108
|
+
'hot-rating': SlRating;
|
|
109
|
+
'hot-relative-time': SlRelativeTime;
|
|
110
|
+
'hot-resize-observer': SlResizeObserver;
|
|
111
|
+
'hot-select': SlSelect;
|
|
112
|
+
'hot-skeleton': SlSkeleton;
|
|
113
|
+
'hot-spinner': SlSpinner;
|
|
114
|
+
'hot-split-panel': SlSplitPanel;
|
|
115
|
+
'hot-switch': SlSwitch;
|
|
116
|
+
'hot-tab': SlTab;
|
|
117
|
+
'hot-tab-group': SlTabGroup;
|
|
118
|
+
'hot-tab-panel': SlTabPanel;
|
|
119
|
+
'hot-tag': SlTag;
|
|
120
|
+
'hot-textarea': SlTextarea;
|
|
121
|
+
'hot-tooltip': SlTooltip;
|
|
122
|
+
'hot-tree': SlTree;
|
|
123
|
+
'hot-tree-item': SlTreeItem;
|
|
124
|
+
'hot-visually-hidden': SlVisuallyHidden;
|
|
125
|
+
'hot-header': HotHeader;
|
|
126
|
+
'hot-toolbar': HotToolbar;
|
|
127
|
+
'hot-tracking': HotTracking;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
export { setBasePath, SlAlert as Alert, SlAnimatedImage as AnimatedImage, SlAnimation as Animation, SlAvatar as Avatar, SlBadge as Badge, SlBreadcrumb as Breadcrumb, SlBreadcrumbItem as BreadcrumbItem, SlButton as Button, SlButtonGroup as ButtonGroup, SlCard as Card, SlCarousel as Carousel, SlCarouselItem as CarouselItem, SlCheckbox as Checkbox, SlColorPicker as ColorPicker, SlCopyButton as CopyButton, SlDetails as Details, SlDialog as Dialog, SlDivider as Divider, SlDrawer as Drawer, SlDropdown as Dropdown, SlFormatBytes as FormatBytes, SlFormatDate as FormatDate, SlFormatNumber as FormatNumber, SlIcon as Icon, SlIconButton as IconButton, SlImageComparer as ImageComparer, SlInclude as Include, SlInput as Input, SlMenu as Menu, SlMenuItem as MenuItem, SlMenuLabel as MenuLabel, SlMutationObserver as MutationObserver, SlOption as Option, SlPopup as Popup, SlProgressBar as ProgressBar, SlProgressRing as ProgressRing, SlQRCode as QRCode, SlRadio as Radio, SlRadioButton as RadioButton, SlRadioGroup as RadioGroup, SlRange as Range, SlRating as Rating, SlRelativeTime as RelativeTime, SlResizeObserver as ResizeObserver, SlSelect as Select, SlSkeleton as Skeleton, SlSpinner as Spinner, SlSplitPanel as SplitPanel, SlSwitch as Switch, SlTab as Tab, SlTabGroup as TabGroup, SlTabPanel as TabPanel, SlTag as Tag, SlTextarea as Textarea, SlTooltip as Tooltip, SlTree as Tree, SlTreeItem as TreeItem, SlVisuallyHidden as VisuallyHidden, HotHeader as Header, HotLogo as Logo, HotToolbar as Toolbar, HotTracking as Tracking, };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { LitElement, CSSResultGroup } from 'lit';
|
|
2
|
+
|
|
3
|
+
export declare class Logo extends LitElement {
|
|
4
|
+
static styles: CSSResultGroup;
|
|
5
|
+
name: string;
|
|
6
|
+
accessor iconOnly: boolean;
|
|
7
|
+
accessor textOnly: boolean;
|
|
8
|
+
protected render(): import('lit').TemplateResult<1>;
|
|
9
|
+
}
|
|
10
|
+
export default Logo;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
export { default as Header } from './Header';
|
|
2
|
+
export { default as Toolbar } from './Toolbar';
|
|
3
|
+
export { default as Tracking } from './Tracking';
|
|
4
|
+
export { default as Logo } from './Logo';
|
|
5
|
+
export { default as Alert } from '@shoelace-style/shoelace/dist/react/alert/index.js';
|
|
6
|
+
export { default as AnimatedImage } from '@shoelace-style/shoelace/dist/react/animated-image/index.js';
|
|
7
|
+
export { default as Animation } from '@shoelace-style/shoelace/dist/react/animation/index.js';
|
|
8
|
+
export { default as Avatar } from '@shoelace-style/shoelace/dist/react/avatar/index.js';
|
|
9
|
+
export { default as Badge } from '@shoelace-style/shoelace/dist/react/badge/index.js';
|
|
10
|
+
export { default as Breadcrumb } from '@shoelace-style/shoelace/dist/react/breadcrumb/index.js';
|
|
11
|
+
export { default as BreadcrumbItem } from '@shoelace-style/shoelace/dist/react/breadcrumb-item/index.js';
|
|
12
|
+
export { default as Button } from '@shoelace-style/shoelace/dist/react/button/index.js';
|
|
13
|
+
export { default as ButtonGroup } from '@shoelace-style/shoelace/dist/react/button-group/index.js';
|
|
14
|
+
export { default as Card } from '@shoelace-style/shoelace/dist/react/card/index.js';
|
|
15
|
+
export { default as Carousel } from '@shoelace-style/shoelace/dist/react/carousel/index.js';
|
|
16
|
+
export { default as CarouselItem } from '@shoelace-style/shoelace/dist/react/carousel-item/index.js';
|
|
17
|
+
export { default as Checkbox } from '@shoelace-style/shoelace/dist/react/checkbox/index.js';
|
|
18
|
+
export { default as ColorPicker } from '@shoelace-style/shoelace/dist/react/color-picker/index.js';
|
|
19
|
+
export { default as CopyButton } from '@shoelace-style/shoelace/dist/react/copy-button/index.js';
|
|
20
|
+
export { default as Details } from '@shoelace-style/shoelace/dist/react/details/index.js';
|
|
21
|
+
export { default as Dialog } from '@shoelace-style/shoelace/dist/react/dialog/index.js';
|
|
22
|
+
export { default as Divider } from '@shoelace-style/shoelace/dist/react/divider/index.js';
|
|
23
|
+
export { default as Drawer } from '@shoelace-style/shoelace/dist/react/drawer/index.js';
|
|
24
|
+
export { default as Dropdown } from '@shoelace-style/shoelace/dist/react/dropdown/index.js';
|
|
25
|
+
export { default as FormatBytes } from '@shoelace-style/shoelace/dist/react/format-bytes/index.js';
|
|
26
|
+
export { default as FormatDate } from '@shoelace-style/shoelace/dist/react/format-date/index.js';
|
|
27
|
+
export { default as FormatNumber } from '@shoelace-style/shoelace/dist/react/format-number/index.js';
|
|
28
|
+
export { default as Icon } from '@shoelace-style/shoelace/dist/react/icon/index.js';
|
|
29
|
+
export { default as IconButton } from '@shoelace-style/shoelace/dist/react/icon-button/index.js';
|
|
30
|
+
export { default as ImageComparer } from '@shoelace-style/shoelace/dist/react/image-comparer/index.js';
|
|
31
|
+
export { default as Include } from '@shoelace-style/shoelace/dist/react/include/index.js';
|
|
32
|
+
export { default as Input } from '@shoelace-style/shoelace/dist/react/input/index.js';
|
|
33
|
+
export { default as Menu } from '@shoelace-style/shoelace/dist/react/menu/index.js';
|
|
34
|
+
export { default as MenuItem } from '@shoelace-style/shoelace/dist/react/menu-item/index.js';
|
|
35
|
+
export { default as MenuLabel } from '@shoelace-style/shoelace/dist/react/menu-label/index.js';
|
|
36
|
+
export { default as MutationObserver } from '@shoelace-style/shoelace/dist/react/mutation-observer/index.js';
|
|
37
|
+
export { default as Option } from '@shoelace-style/shoelace/dist/react/option/index.js';
|
|
38
|
+
export { default as Popup } from '@shoelace-style/shoelace/dist/react/popup/index.js';
|
|
39
|
+
export { default as ProgressBar } from '@shoelace-style/shoelace/dist/react/progress-bar/index.js';
|
|
40
|
+
export { default as ProgressRing } from '@shoelace-style/shoelace/dist/react/progress-ring/index.js';
|
|
41
|
+
export { default as QRCode } from '@shoelace-style/shoelace/dist/react/qr-code/index.js';
|
|
42
|
+
export { default as Radio } from '@shoelace-style/shoelace/dist/react/radio/index.js';
|
|
43
|
+
export { default as RadioButton } from '@shoelace-style/shoelace/dist/react/radio-button/index.js';
|
|
44
|
+
export { default as RadioGroup } from '@shoelace-style/shoelace/dist/react/radio-group/index.js';
|
|
45
|
+
export { default as Range } from '@shoelace-style/shoelace/dist/react/range/index.js';
|
|
46
|
+
export { default as Rating } from '@shoelace-style/shoelace/dist/react/rating/index.js';
|
|
47
|
+
export { default as RelativeTime } from '@shoelace-style/shoelace/dist/react/relative-time/index.js';
|
|
48
|
+
export { default as ResizeObserver } from '@shoelace-style/shoelace/dist/react/resize-observer/index.js';
|
|
49
|
+
export { default as Select } from '@shoelace-style/shoelace/dist/react/select/index.js';
|
|
50
|
+
export { default as Skeleton } from '@shoelace-style/shoelace/dist/react/skeleton/index.js';
|
|
51
|
+
export { default as Spinner } from '@shoelace-style/shoelace/dist/react/spinner/index.js';
|
|
52
|
+
export { default as SplitPanel } from '@shoelace-style/shoelace/dist/react/split-panel/index.js';
|
|
53
|
+
export { default as Switch } from '@shoelace-style/shoelace/dist/react/switch/index.js';
|
|
54
|
+
export { default as Tab } from '@shoelace-style/shoelace/dist/react/tab/index.js';
|
|
55
|
+
export { default as TabGroup } from '@shoelace-style/shoelace/dist/react/tab-group/index.js';
|
|
56
|
+
export { default as TabPanel } from '@shoelace-style/shoelace/dist/react/tab-panel/index.js';
|
|
57
|
+
export { default as Tag } from '@shoelace-style/shoelace/dist/react/tag/index.js';
|
|
58
|
+
export { default as Textarea } from '@shoelace-style/shoelace/dist/react/textarea/index.js';
|
|
59
|
+
export { default as Tooltip } from '@shoelace-style/shoelace/dist/react/tooltip/index.js';
|
|
60
|
+
export { default as Tree } from '@shoelace-style/shoelace/dist/react/tree/index.js';
|
|
61
|
+
export { default as TreeItem } from '@shoelace-style/shoelace/dist/react/tree-item/index.js';
|
|
62
|
+
export { default as VisuallyHidden } from '@shoelace-style/shoelace/dist/react/visually-hidden/index.js';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { LitElement, CSSResultGroup } from 'lit';
|
|
2
|
+
|
|
3
|
+
export declare class Toolbar extends LitElement {
|
|
4
|
+
static styles: CSSResultGroup;
|
|
5
|
+
name: string;
|
|
6
|
+
/** Change the position of the tooltips relative to buttons. */
|
|
7
|
+
accessor tooltipPosition: string;
|
|
8
|
+
protected render(): import('lit').TemplateResult<1>;
|
|
9
|
+
private renderButtonGroup;
|
|
10
|
+
private renderButton;
|
|
11
|
+
private readonly undo;
|
|
12
|
+
private readonly redo;
|
|
13
|
+
private readonly bold;
|
|
14
|
+
private readonly italic;
|
|
15
|
+
private readonly underline;
|
|
16
|
+
private readonly alignLeft;
|
|
17
|
+
private readonly alignCenter;
|
|
18
|
+
private readonly alignRight;
|
|
19
|
+
}
|
|
20
|
+
export default Toolbar;
|
|
@@ -1,22 +1,21 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
import { LitElement } from "lit";
|
|
1
|
+
import { LitElement, CSSResultGroup } from 'lit';
|
|
2
|
+
|
|
4
3
|
declare global {
|
|
5
4
|
interface Window {
|
|
6
5
|
_paq: any[];
|
|
7
6
|
}
|
|
8
7
|
}
|
|
9
8
|
export declare class Tracking extends LitElement {
|
|
9
|
+
static styles: CSSResultGroup;
|
|
10
10
|
name: string;
|
|
11
11
|
/** The Matomo site id for tracking. */
|
|
12
|
-
siteId: string;
|
|
12
|
+
accessor siteId: string;
|
|
13
13
|
/** The domains to apply tracking. */
|
|
14
|
-
domain: string;
|
|
14
|
+
accessor domain: string;
|
|
15
15
|
/** Force display the banner. */
|
|
16
|
-
force: boolean;
|
|
17
|
-
isOpen: boolean;
|
|
18
|
-
|
|
19
|
-
protected render(): import("lit").TemplateResult<1>;
|
|
16
|
+
accessor force: boolean;
|
|
17
|
+
accessor isOpen: boolean;
|
|
18
|
+
protected render(): import('lit').TemplateResult<1>;
|
|
20
19
|
private _setAgree;
|
|
21
20
|
private _setDisagree;
|
|
22
21
|
connectedCallback(): void;
|