@semantic-components/ui 0.0.1
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 +7 -0
- package/components/date-picker/date-picker.component.d.ts +5 -0
- package/components/date-picker/index.d.ts +1 -0
- package/components/editor/editor.component.d.ts +5 -0
- package/components/editor/index.d.ts +1 -0
- package/components/navbar/index.d.ts +1 -0
- package/components/navbar/navbar.component.d.ts +5 -0
- package/components/tooltip/index.d.ts +1 -0
- package/components/tooltip/tooltip.component.d.ts +5 -0
- package/esm2022/components/date-picker/date-picker.component.mjs +16 -0
- package/esm2022/components/date-picker/index.mjs +2 -0
- package/esm2022/components/editor/editor.component.mjs +16 -0
- package/esm2022/components/editor/index.mjs +2 -0
- package/esm2022/components/navbar/index.mjs +2 -0
- package/esm2022/components/navbar/navbar.component.mjs +566 -0
- package/esm2022/components/tooltip/index.mjs +2 -0
- package/esm2022/components/tooltip/tooltip.component.mjs +16 -0
- package/esm2022/index.mjs +5 -0
- package/esm2022/semantic-components-ui.mjs +5 -0
- package/fesm2022/semantic-components-ui.mjs +612 -0
- package/fesm2022/semantic-components-ui.mjs.map +1 -0
- package/index.d.ts +4 -0
- package/package.json +35 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from './components/date-picker';
|
|
2
|
+
export * from './components/editor';
|
|
3
|
+
export * from './components/navbar';
|
|
4
|
+
export * from './components/tooltip';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL3VpL3NyYy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLHNCQUFzQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL2RhdGUtcGlja2VyJztcbmV4cG9ydCAqIGZyb20gJy4vY29tcG9uZW50cy9lZGl0b3InO1xuZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL25hdmJhcic7XG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvdG9vbHRpcCc7XG4iXX0=
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './index';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VtYW50aWMtY29tcG9uZW50cy11aS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL2xpYnMvdWkvc3JjL3NlbWFudGljLWNvbXBvbmVudHMtdWkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
|
|
@@ -0,0 +1,612 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, ViewEncapsulation, ChangeDetectionStrategy } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
|
|
5
|
+
class DatePickerComponent {
|
|
6
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.11", ngImport: i0, type: DatePickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.11", type: DatePickerComponent, isStandalone: true, selector: "lib-date-picker", ngImport: i0, template: `
|
|
8
|
+
<p>date-picker works!</p>
|
|
9
|
+
`, isInline: true, styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
10
|
+
}
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.11", ngImport: i0, type: DatePickerComponent, decorators: [{
|
|
12
|
+
type: Component,
|
|
13
|
+
args: [{ selector: 'lib-date-picker', standalone: true, imports: [CommonModule], template: `
|
|
14
|
+
<p>date-picker works!</p>
|
|
15
|
+
`, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush }]
|
|
16
|
+
}] });
|
|
17
|
+
|
|
18
|
+
class EditorComponent {
|
|
19
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.11", ngImport: i0, type: EditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
20
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.11", type: EditorComponent, isStandalone: true, selector: "lib-editor", ngImport: i0, template: `
|
|
21
|
+
<p>editor works!</p>
|
|
22
|
+
`, isInline: true, styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
23
|
+
}
|
|
24
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.11", ngImport: i0, type: EditorComponent, decorators: [{
|
|
25
|
+
type: Component,
|
|
26
|
+
args: [{ selector: 'lib-editor', standalone: true, imports: [CommonModule], template: `
|
|
27
|
+
<p>editor works!</p>
|
|
28
|
+
`, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush }]
|
|
29
|
+
}] });
|
|
30
|
+
|
|
31
|
+
class NavbarComponent {
|
|
32
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.11", ngImport: i0, type: NavbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
33
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.11", type: NavbarComponent, isStandalone: true, selector: "lib-navbar", ngImport: i0, template: `
|
|
34
|
+
<nav class="border-gray-200 bg-white dark:bg-gray-900">
|
|
35
|
+
<div class="mx-auto flex max-w-screen-xl flex-wrap items-center justify-between p-4">
|
|
36
|
+
<a class="flex items-center space-x-3 rtl:space-x-reverse" href="https://flowbite.com/">
|
|
37
|
+
<img class="h-8" src="https://flowbite.com/docs/images/logo.svg" alt="Flowbite Logo" />
|
|
38
|
+
<span class="self-center whitespace-nowrap text-2xl font-semibold dark:text-white">
|
|
39
|
+
Flowbite
|
|
40
|
+
</span>
|
|
41
|
+
</a>
|
|
42
|
+
<div class="flex items-center space-x-1 md:order-2 md:space-x-0 rtl:space-x-reverse">
|
|
43
|
+
<button
|
|
44
|
+
class="inline-flex cursor-pointer items-center justify-center rounded-lg px-4 py-2 text-sm font-medium text-gray-900 hover:bg-gray-100 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white"
|
|
45
|
+
type="button"
|
|
46
|
+
data-dropdown-toggle="language-dropdown-menu"
|
|
47
|
+
>
|
|
48
|
+
<svg
|
|
49
|
+
class="me-3 h-5 w-5 rounded-full"
|
|
50
|
+
aria-hidden="true"
|
|
51
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
52
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
53
|
+
viewBox="0 0 3900 3900"
|
|
54
|
+
>
|
|
55
|
+
<path fill="#b22234" d="M0 0h7410v3900H0z" />
|
|
56
|
+
<path
|
|
57
|
+
d="M0 450h7410m0 600H0m0 600h7410m0 600H0m0 600h7410m0 600H0"
|
|
58
|
+
stroke="#fff"
|
|
59
|
+
stroke-width="300"
|
|
60
|
+
/>
|
|
61
|
+
<path fill="#3c3b6e" d="M0 0h2964v2100H0z" />
|
|
62
|
+
<g fill="#fff">
|
|
63
|
+
<g id="d">
|
|
64
|
+
<g id="c">
|
|
65
|
+
<g id="e">
|
|
66
|
+
<g id="b">
|
|
67
|
+
<path
|
|
68
|
+
id="a"
|
|
69
|
+
d="M247 90l70.534 217.082-184.66-134.164h228.253L176.466 307.082z"
|
|
70
|
+
/>
|
|
71
|
+
<use xlink:href="#a" y="420" />
|
|
72
|
+
<use xlink:href="#a" y="840" />
|
|
73
|
+
<use xlink:href="#a" y="1260" />
|
|
74
|
+
</g>
|
|
75
|
+
<use xlink:href="#a" y="1680" />
|
|
76
|
+
</g>
|
|
77
|
+
<use xlink:href="#b" x="247" y="210" />
|
|
78
|
+
</g>
|
|
79
|
+
<use xlink:href="#c" x="494" />
|
|
80
|
+
</g>
|
|
81
|
+
<use xlink:href="#d" x="988" />
|
|
82
|
+
<use xlink:href="#c" x="1976" />
|
|
83
|
+
<use xlink:href="#e" x="2470" />
|
|
84
|
+
</g>
|
|
85
|
+
</svg>
|
|
86
|
+
English (US)
|
|
87
|
+
</button>
|
|
88
|
+
<!-- Dropdown -->
|
|
89
|
+
<div
|
|
90
|
+
class="z-50 my-4 hidden list-none divide-y divide-gray-100 rounded-lg bg-white text-base shadow dark:bg-gray-700"
|
|
91
|
+
id="language-dropdown-menu"
|
|
92
|
+
>
|
|
93
|
+
<ul class="py-2 font-medium" role="none">
|
|
94
|
+
<li>
|
|
95
|
+
<a
|
|
96
|
+
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-400 dark:hover:bg-gray-600 dark:hover:text-white"
|
|
97
|
+
href="javascript:void(0)"
|
|
98
|
+
role="menuitem"
|
|
99
|
+
>
|
|
100
|
+
<div class="inline-flex items-center">
|
|
101
|
+
<svg
|
|
102
|
+
class="me-2 h-3.5 w-3.5 rounded-full"
|
|
103
|
+
id="flag-icon-css-us"
|
|
104
|
+
aria-hidden="true"
|
|
105
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
106
|
+
viewBox="0 0 512 512"
|
|
107
|
+
>
|
|
108
|
+
<g fill-rule="evenodd">
|
|
109
|
+
<g stroke-width="1pt">
|
|
110
|
+
<path
|
|
111
|
+
fill="#bd3d44"
|
|
112
|
+
d="M0 0h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0z"
|
|
113
|
+
transform="scale(3.9385)"
|
|
114
|
+
/>
|
|
115
|
+
<path
|
|
116
|
+
fill="#fff"
|
|
117
|
+
d="M0 10h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0z"
|
|
118
|
+
transform="scale(3.9385)"
|
|
119
|
+
/>
|
|
120
|
+
</g>
|
|
121
|
+
<path fill="#192f5d" d="M0 0h98.8v70H0z" transform="scale(3.9385)" />
|
|
122
|
+
<path
|
|
123
|
+
fill="#fff"
|
|
124
|
+
d="M8.2 3l1 2.8H12L9.7 7.5l.9 2.7-2.4-1.7L6 10.2l.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8H45l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7L74 8.5l-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9L92 7.5l1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm-74.1 7l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7H65zm16.4 0l1 2.8H86l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm-74 7l.8 2.8h3l-2.4 1.7.9 2.7-2.4-1.7L6 24.2l.9-2.7-2.4-1.7h3zm16.4 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8H45l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9L92 21.5l1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm-74.1 7l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7H65zm16.4 0l1 2.8H86l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm-74 7l.8 2.8h3l-2.4 1.7.9 2.7-2.4-1.7L6 38.2l.9-2.7-2.4-1.7h3zm16.4 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8H45l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9L92 35.5l1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm-74.1 7l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7H65zm16.4 0l1 2.8H86l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm-74 7l.8 2.8h3l-2.4 1.7.9 2.7-2.4-1.7L6 52.2l.9-2.7-2.4-1.7h3zm16.4 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8H45l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9L92 49.5l1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm-74.1 7l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7H65zm16.4 0l1 2.8H86l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm-74 7l.8 2.8h3l-2.4 1.7.9 2.7-2.4-1.7L6 66.2l.9-2.7-2.4-1.7h3zm16.4 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8H45l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9L92 63.5l1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9z"
|
|
125
|
+
transform="scale(3.9385)"
|
|
126
|
+
/>
|
|
127
|
+
</g>
|
|
128
|
+
</svg>
|
|
129
|
+
English (US)
|
|
130
|
+
</div>
|
|
131
|
+
</a>
|
|
132
|
+
</li>
|
|
133
|
+
<li>
|
|
134
|
+
<a
|
|
135
|
+
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-400 dark:hover:bg-gray-600 dark:hover:text-white"
|
|
136
|
+
href="javascript:void(0)"
|
|
137
|
+
role="menuitem"
|
|
138
|
+
>
|
|
139
|
+
<div class="inline-flex items-center">
|
|
140
|
+
<svg
|
|
141
|
+
class="me-2 h-3.5 w-3.5 rounded-full"
|
|
142
|
+
id="flag-icon-css-de"
|
|
143
|
+
aria-hidden="true"
|
|
144
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
145
|
+
viewBox="0 0 512 512"
|
|
146
|
+
>
|
|
147
|
+
<path fill="#ffce00" d="M0 341.3h512V512H0z" />
|
|
148
|
+
<path d="M0 0h512v170.7H0z" />
|
|
149
|
+
<path fill="#d00" d="M0 170.7h512v170.6H0z" />
|
|
150
|
+
</svg>
|
|
151
|
+
Deutsch
|
|
152
|
+
</div>
|
|
153
|
+
</a>
|
|
154
|
+
</li>
|
|
155
|
+
<li>
|
|
156
|
+
<a
|
|
157
|
+
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-400 dark:hover:bg-gray-600 dark:hover:text-white"
|
|
158
|
+
href="javascript:void(0)"
|
|
159
|
+
role="menuitem"
|
|
160
|
+
>
|
|
161
|
+
<div class="inline-flex items-center">
|
|
162
|
+
<svg
|
|
163
|
+
class="me-2 h-3.5 w-3.5 rounded-full"
|
|
164
|
+
id="flag-icon-css-it"
|
|
165
|
+
aria-hidden="true"
|
|
166
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
167
|
+
viewBox="0 0 512 512"
|
|
168
|
+
>
|
|
169
|
+
<g fill-rule="evenodd" stroke-width="1pt">
|
|
170
|
+
<path fill="#fff" d="M0 0h512v512H0z" />
|
|
171
|
+
<path fill="#009246" d="M0 0h170.7v512H0z" />
|
|
172
|
+
<path fill="#ce2b37" d="M341.3 0H512v512H341.3z" />
|
|
173
|
+
</g>
|
|
174
|
+
</svg>
|
|
175
|
+
Italiano
|
|
176
|
+
</div>
|
|
177
|
+
</a>
|
|
178
|
+
</li>
|
|
179
|
+
<li>
|
|
180
|
+
<a
|
|
181
|
+
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-400 dark:hover:bg-gray-600 dark:hover:text-white"
|
|
182
|
+
href="javascript:void(0)"
|
|
183
|
+
role="menuitem"
|
|
184
|
+
>
|
|
185
|
+
<div class="inline-flex items-center">
|
|
186
|
+
<svg
|
|
187
|
+
class="me-2 h-3.5 w-3.5 rounded-full"
|
|
188
|
+
id="flag-icon-css-cn"
|
|
189
|
+
aria-hidden="true"
|
|
190
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
191
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
192
|
+
viewBox="0 0 512 512"
|
|
193
|
+
>
|
|
194
|
+
<defs><path id="a" fill="#ffde00" d="M1-.3L-.7.8 0-1 .6.8-1-.3z" /></defs>
|
|
195
|
+
<path fill="#de2910" d="M0 0h512v512H0z" />
|
|
196
|
+
<use
|
|
197
|
+
width="30"
|
|
198
|
+
height="20"
|
|
199
|
+
transform="matrix(76.8 0 0 76.8 128 128)"
|
|
200
|
+
xlink:href="#a"
|
|
201
|
+
/>
|
|
202
|
+
<use
|
|
203
|
+
width="30"
|
|
204
|
+
height="20"
|
|
205
|
+
transform="rotate(-121 142.6 -47) scale(25.5827)"
|
|
206
|
+
xlink:href="#a"
|
|
207
|
+
/>
|
|
208
|
+
<use
|
|
209
|
+
width="30"
|
|
210
|
+
height="20"
|
|
211
|
+
transform="rotate(-98.1 198 -82) scale(25.6)"
|
|
212
|
+
xlink:href="#a"
|
|
213
|
+
/>
|
|
214
|
+
<use
|
|
215
|
+
width="30"
|
|
216
|
+
height="20"
|
|
217
|
+
transform="rotate(-74 272.4 -114) scale(25.6137)"
|
|
218
|
+
xlink:href="#a"
|
|
219
|
+
/>
|
|
220
|
+
<use
|
|
221
|
+
width="30"
|
|
222
|
+
height="20"
|
|
223
|
+
transform="matrix(16 -19.968 19.968 16 256 230.4)"
|
|
224
|
+
xlink:href="#a"
|
|
225
|
+
/>
|
|
226
|
+
</svg>
|
|
227
|
+
中文 (繁體)
|
|
228
|
+
</div>
|
|
229
|
+
</a>
|
|
230
|
+
</li>
|
|
231
|
+
</ul>
|
|
232
|
+
</div>
|
|
233
|
+
<button
|
|
234
|
+
class="inline-flex h-10 w-10 items-center justify-center rounded-lg p-2 text-sm text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 md:hidden dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600"
|
|
235
|
+
data-collapse-toggle="navbar-language"
|
|
236
|
+
type="button"
|
|
237
|
+
aria-controls="navbar-language"
|
|
238
|
+
aria-expanded="false"
|
|
239
|
+
>
|
|
240
|
+
<span class="sr-only">Open main menu</span>
|
|
241
|
+
<svg
|
|
242
|
+
class="h-5 w-5"
|
|
243
|
+
aria-hidden="true"
|
|
244
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
245
|
+
fill="none"
|
|
246
|
+
viewBox="0 0 17 14"
|
|
247
|
+
>
|
|
248
|
+
<path
|
|
249
|
+
stroke="currentColor"
|
|
250
|
+
stroke-linecap="round"
|
|
251
|
+
stroke-linejoin="round"
|
|
252
|
+
stroke-width="2"
|
|
253
|
+
d="M1 1h15M1 7h15M1 13h15"
|
|
254
|
+
/>
|
|
255
|
+
</svg>
|
|
256
|
+
</button>
|
|
257
|
+
</div>
|
|
258
|
+
<div
|
|
259
|
+
class="hidden w-full items-center justify-between md:order-1 md:flex md:w-auto"
|
|
260
|
+
id="navbar-language"
|
|
261
|
+
>
|
|
262
|
+
<ul
|
|
263
|
+
class="mt-4 flex flex-col rounded-lg border border-gray-100 bg-gray-50 p-4 font-medium md:mt-0 md:flex-row md:space-x-8 md:border-0 md:bg-white md:p-0 rtl:space-x-reverse dark:border-gray-700 dark:bg-gray-800 md:dark:bg-gray-900"
|
|
264
|
+
>
|
|
265
|
+
<li>
|
|
266
|
+
<a
|
|
267
|
+
class="block rounded bg-blue-700 px-3 py-2 text-white md:bg-transparent md:p-0 md:text-blue-700 md:dark:text-blue-500"
|
|
268
|
+
href="javascript:void(0)"
|
|
269
|
+
aria-current="page"
|
|
270
|
+
>
|
|
271
|
+
Home
|
|
272
|
+
</a>
|
|
273
|
+
</li>
|
|
274
|
+
<li>
|
|
275
|
+
<a
|
|
276
|
+
class="block rounded px-3 py-2 text-gray-900 hover:bg-gray-100 md:p-0 md:hover:bg-transparent md:hover:text-blue-700 dark:border-gray-700 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent md:dark:hover:text-blue-500"
|
|
277
|
+
href="javascript:void(0)"
|
|
278
|
+
>
|
|
279
|
+
About
|
|
280
|
+
</a>
|
|
281
|
+
</li>
|
|
282
|
+
<li>
|
|
283
|
+
<a
|
|
284
|
+
class="block rounded px-3 py-2 text-gray-900 hover:bg-gray-100 md:p-0 md:hover:bg-transparent md:hover:text-blue-700 dark:border-gray-700 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent md:dark:hover:text-blue-500"
|
|
285
|
+
href="javascript:void(0)"
|
|
286
|
+
>
|
|
287
|
+
Services
|
|
288
|
+
</a>
|
|
289
|
+
</li>
|
|
290
|
+
<li>
|
|
291
|
+
<a
|
|
292
|
+
class="block rounded px-3 py-2 text-gray-900 hover:bg-gray-100 md:p-0 md:hover:bg-transparent md:hover:text-blue-700 dark:border-gray-700 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent md:dark:hover:text-blue-500"
|
|
293
|
+
href="javascript:void(0)"
|
|
294
|
+
>
|
|
295
|
+
Pricing
|
|
296
|
+
</a>
|
|
297
|
+
</li>
|
|
298
|
+
<li>
|
|
299
|
+
<a
|
|
300
|
+
class="block rounded px-3 py-2 text-gray-900 hover:bg-gray-100 md:p-0 md:hover:bg-transparent md:hover:text-blue-700 dark:border-gray-700 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent md:dark:hover:text-blue-500"
|
|
301
|
+
href="javascript:void(0)"
|
|
302
|
+
>
|
|
303
|
+
Contact
|
|
304
|
+
</a>
|
|
305
|
+
</li>
|
|
306
|
+
</ul>
|
|
307
|
+
</div>
|
|
308
|
+
</div>
|
|
309
|
+
</nav>
|
|
310
|
+
`, isInline: true, styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
311
|
+
}
|
|
312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.11", ngImport: i0, type: NavbarComponent, decorators: [{
|
|
313
|
+
type: Component,
|
|
314
|
+
args: [{ selector: 'lib-navbar', standalone: true, imports: [CommonModule], template: `
|
|
315
|
+
<nav class="border-gray-200 bg-white dark:bg-gray-900">
|
|
316
|
+
<div class="mx-auto flex max-w-screen-xl flex-wrap items-center justify-between p-4">
|
|
317
|
+
<a class="flex items-center space-x-3 rtl:space-x-reverse" href="https://flowbite.com/">
|
|
318
|
+
<img class="h-8" src="https://flowbite.com/docs/images/logo.svg" alt="Flowbite Logo" />
|
|
319
|
+
<span class="self-center whitespace-nowrap text-2xl font-semibold dark:text-white">
|
|
320
|
+
Flowbite
|
|
321
|
+
</span>
|
|
322
|
+
</a>
|
|
323
|
+
<div class="flex items-center space-x-1 md:order-2 md:space-x-0 rtl:space-x-reverse">
|
|
324
|
+
<button
|
|
325
|
+
class="inline-flex cursor-pointer items-center justify-center rounded-lg px-4 py-2 text-sm font-medium text-gray-900 hover:bg-gray-100 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white"
|
|
326
|
+
type="button"
|
|
327
|
+
data-dropdown-toggle="language-dropdown-menu"
|
|
328
|
+
>
|
|
329
|
+
<svg
|
|
330
|
+
class="me-3 h-5 w-5 rounded-full"
|
|
331
|
+
aria-hidden="true"
|
|
332
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
333
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
334
|
+
viewBox="0 0 3900 3900"
|
|
335
|
+
>
|
|
336
|
+
<path fill="#b22234" d="M0 0h7410v3900H0z" />
|
|
337
|
+
<path
|
|
338
|
+
d="M0 450h7410m0 600H0m0 600h7410m0 600H0m0 600h7410m0 600H0"
|
|
339
|
+
stroke="#fff"
|
|
340
|
+
stroke-width="300"
|
|
341
|
+
/>
|
|
342
|
+
<path fill="#3c3b6e" d="M0 0h2964v2100H0z" />
|
|
343
|
+
<g fill="#fff">
|
|
344
|
+
<g id="d">
|
|
345
|
+
<g id="c">
|
|
346
|
+
<g id="e">
|
|
347
|
+
<g id="b">
|
|
348
|
+
<path
|
|
349
|
+
id="a"
|
|
350
|
+
d="M247 90l70.534 217.082-184.66-134.164h228.253L176.466 307.082z"
|
|
351
|
+
/>
|
|
352
|
+
<use xlink:href="#a" y="420" />
|
|
353
|
+
<use xlink:href="#a" y="840" />
|
|
354
|
+
<use xlink:href="#a" y="1260" />
|
|
355
|
+
</g>
|
|
356
|
+
<use xlink:href="#a" y="1680" />
|
|
357
|
+
</g>
|
|
358
|
+
<use xlink:href="#b" x="247" y="210" />
|
|
359
|
+
</g>
|
|
360
|
+
<use xlink:href="#c" x="494" />
|
|
361
|
+
</g>
|
|
362
|
+
<use xlink:href="#d" x="988" />
|
|
363
|
+
<use xlink:href="#c" x="1976" />
|
|
364
|
+
<use xlink:href="#e" x="2470" />
|
|
365
|
+
</g>
|
|
366
|
+
</svg>
|
|
367
|
+
English (US)
|
|
368
|
+
</button>
|
|
369
|
+
<!-- Dropdown -->
|
|
370
|
+
<div
|
|
371
|
+
class="z-50 my-4 hidden list-none divide-y divide-gray-100 rounded-lg bg-white text-base shadow dark:bg-gray-700"
|
|
372
|
+
id="language-dropdown-menu"
|
|
373
|
+
>
|
|
374
|
+
<ul class="py-2 font-medium" role="none">
|
|
375
|
+
<li>
|
|
376
|
+
<a
|
|
377
|
+
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-400 dark:hover:bg-gray-600 dark:hover:text-white"
|
|
378
|
+
href="javascript:void(0)"
|
|
379
|
+
role="menuitem"
|
|
380
|
+
>
|
|
381
|
+
<div class="inline-flex items-center">
|
|
382
|
+
<svg
|
|
383
|
+
class="me-2 h-3.5 w-3.5 rounded-full"
|
|
384
|
+
id="flag-icon-css-us"
|
|
385
|
+
aria-hidden="true"
|
|
386
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
387
|
+
viewBox="0 0 512 512"
|
|
388
|
+
>
|
|
389
|
+
<g fill-rule="evenodd">
|
|
390
|
+
<g stroke-width="1pt">
|
|
391
|
+
<path
|
|
392
|
+
fill="#bd3d44"
|
|
393
|
+
d="M0 0h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0z"
|
|
394
|
+
transform="scale(3.9385)"
|
|
395
|
+
/>
|
|
396
|
+
<path
|
|
397
|
+
fill="#fff"
|
|
398
|
+
d="M0 10h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0zm0 20h247v10H0z"
|
|
399
|
+
transform="scale(3.9385)"
|
|
400
|
+
/>
|
|
401
|
+
</g>
|
|
402
|
+
<path fill="#192f5d" d="M0 0h98.8v70H0z" transform="scale(3.9385)" />
|
|
403
|
+
<path
|
|
404
|
+
fill="#fff"
|
|
405
|
+
d="M8.2 3l1 2.8H12L9.7 7.5l.9 2.7-2.4-1.7L6 10.2l.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8H45l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7L74 8.5l-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9L92 7.5l1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm-74.1 7l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7H65zm16.4 0l1 2.8H86l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm-74 7l.8 2.8h3l-2.4 1.7.9 2.7-2.4-1.7L6 24.2l.9-2.7-2.4-1.7h3zm16.4 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8H45l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9L92 21.5l1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm-74.1 7l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7H65zm16.4 0l1 2.8H86l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm-74 7l.8 2.8h3l-2.4 1.7.9 2.7-2.4-1.7L6 38.2l.9-2.7-2.4-1.7h3zm16.4 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8H45l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9L92 35.5l1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm-74.1 7l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7H65zm16.4 0l1 2.8H86l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm-74 7l.8 2.8h3l-2.4 1.7.9 2.7-2.4-1.7L6 52.2l.9-2.7-2.4-1.7h3zm16.4 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8H45l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9L92 49.5l1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm-74.1 7l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7H65zm16.4 0l1 2.8H86l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm-74 7l.8 2.8h3l-2.4 1.7.9 2.7-2.4-1.7L6 66.2l.9-2.7-2.4-1.7h3zm16.4 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8H45l-2.4 1.7 1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9zm16.4 0l1 2.8h2.8l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h3zm16.5 0l.9 2.8h2.9l-2.3 1.7.9 2.7-2.4-1.7-2.3 1.7.9-2.7-2.4-1.7h2.9zm16.5 0l.9 2.8h2.9L92 63.5l1 2.7-2.4-1.7-2.4 1.7 1-2.7-2.4-1.7h2.9z"
|
|
406
|
+
transform="scale(3.9385)"
|
|
407
|
+
/>
|
|
408
|
+
</g>
|
|
409
|
+
</svg>
|
|
410
|
+
English (US)
|
|
411
|
+
</div>
|
|
412
|
+
</a>
|
|
413
|
+
</li>
|
|
414
|
+
<li>
|
|
415
|
+
<a
|
|
416
|
+
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-400 dark:hover:bg-gray-600 dark:hover:text-white"
|
|
417
|
+
href="javascript:void(0)"
|
|
418
|
+
role="menuitem"
|
|
419
|
+
>
|
|
420
|
+
<div class="inline-flex items-center">
|
|
421
|
+
<svg
|
|
422
|
+
class="me-2 h-3.5 w-3.5 rounded-full"
|
|
423
|
+
id="flag-icon-css-de"
|
|
424
|
+
aria-hidden="true"
|
|
425
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
426
|
+
viewBox="0 0 512 512"
|
|
427
|
+
>
|
|
428
|
+
<path fill="#ffce00" d="M0 341.3h512V512H0z" />
|
|
429
|
+
<path d="M0 0h512v170.7H0z" />
|
|
430
|
+
<path fill="#d00" d="M0 170.7h512v170.6H0z" />
|
|
431
|
+
</svg>
|
|
432
|
+
Deutsch
|
|
433
|
+
</div>
|
|
434
|
+
</a>
|
|
435
|
+
</li>
|
|
436
|
+
<li>
|
|
437
|
+
<a
|
|
438
|
+
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-400 dark:hover:bg-gray-600 dark:hover:text-white"
|
|
439
|
+
href="javascript:void(0)"
|
|
440
|
+
role="menuitem"
|
|
441
|
+
>
|
|
442
|
+
<div class="inline-flex items-center">
|
|
443
|
+
<svg
|
|
444
|
+
class="me-2 h-3.5 w-3.5 rounded-full"
|
|
445
|
+
id="flag-icon-css-it"
|
|
446
|
+
aria-hidden="true"
|
|
447
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
448
|
+
viewBox="0 0 512 512"
|
|
449
|
+
>
|
|
450
|
+
<g fill-rule="evenodd" stroke-width="1pt">
|
|
451
|
+
<path fill="#fff" d="M0 0h512v512H0z" />
|
|
452
|
+
<path fill="#009246" d="M0 0h170.7v512H0z" />
|
|
453
|
+
<path fill="#ce2b37" d="M341.3 0H512v512H341.3z" />
|
|
454
|
+
</g>
|
|
455
|
+
</svg>
|
|
456
|
+
Italiano
|
|
457
|
+
</div>
|
|
458
|
+
</a>
|
|
459
|
+
</li>
|
|
460
|
+
<li>
|
|
461
|
+
<a
|
|
462
|
+
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-400 dark:hover:bg-gray-600 dark:hover:text-white"
|
|
463
|
+
href="javascript:void(0)"
|
|
464
|
+
role="menuitem"
|
|
465
|
+
>
|
|
466
|
+
<div class="inline-flex items-center">
|
|
467
|
+
<svg
|
|
468
|
+
class="me-2 h-3.5 w-3.5 rounded-full"
|
|
469
|
+
id="flag-icon-css-cn"
|
|
470
|
+
aria-hidden="true"
|
|
471
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
472
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
473
|
+
viewBox="0 0 512 512"
|
|
474
|
+
>
|
|
475
|
+
<defs><path id="a" fill="#ffde00" d="M1-.3L-.7.8 0-1 .6.8-1-.3z" /></defs>
|
|
476
|
+
<path fill="#de2910" d="M0 0h512v512H0z" />
|
|
477
|
+
<use
|
|
478
|
+
width="30"
|
|
479
|
+
height="20"
|
|
480
|
+
transform="matrix(76.8 0 0 76.8 128 128)"
|
|
481
|
+
xlink:href="#a"
|
|
482
|
+
/>
|
|
483
|
+
<use
|
|
484
|
+
width="30"
|
|
485
|
+
height="20"
|
|
486
|
+
transform="rotate(-121 142.6 -47) scale(25.5827)"
|
|
487
|
+
xlink:href="#a"
|
|
488
|
+
/>
|
|
489
|
+
<use
|
|
490
|
+
width="30"
|
|
491
|
+
height="20"
|
|
492
|
+
transform="rotate(-98.1 198 -82) scale(25.6)"
|
|
493
|
+
xlink:href="#a"
|
|
494
|
+
/>
|
|
495
|
+
<use
|
|
496
|
+
width="30"
|
|
497
|
+
height="20"
|
|
498
|
+
transform="rotate(-74 272.4 -114) scale(25.6137)"
|
|
499
|
+
xlink:href="#a"
|
|
500
|
+
/>
|
|
501
|
+
<use
|
|
502
|
+
width="30"
|
|
503
|
+
height="20"
|
|
504
|
+
transform="matrix(16 -19.968 19.968 16 256 230.4)"
|
|
505
|
+
xlink:href="#a"
|
|
506
|
+
/>
|
|
507
|
+
</svg>
|
|
508
|
+
中文 (繁體)
|
|
509
|
+
</div>
|
|
510
|
+
</a>
|
|
511
|
+
</li>
|
|
512
|
+
</ul>
|
|
513
|
+
</div>
|
|
514
|
+
<button
|
|
515
|
+
class="inline-flex h-10 w-10 items-center justify-center rounded-lg p-2 text-sm text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 md:hidden dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600"
|
|
516
|
+
data-collapse-toggle="navbar-language"
|
|
517
|
+
type="button"
|
|
518
|
+
aria-controls="navbar-language"
|
|
519
|
+
aria-expanded="false"
|
|
520
|
+
>
|
|
521
|
+
<span class="sr-only">Open main menu</span>
|
|
522
|
+
<svg
|
|
523
|
+
class="h-5 w-5"
|
|
524
|
+
aria-hidden="true"
|
|
525
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
526
|
+
fill="none"
|
|
527
|
+
viewBox="0 0 17 14"
|
|
528
|
+
>
|
|
529
|
+
<path
|
|
530
|
+
stroke="currentColor"
|
|
531
|
+
stroke-linecap="round"
|
|
532
|
+
stroke-linejoin="round"
|
|
533
|
+
stroke-width="2"
|
|
534
|
+
d="M1 1h15M1 7h15M1 13h15"
|
|
535
|
+
/>
|
|
536
|
+
</svg>
|
|
537
|
+
</button>
|
|
538
|
+
</div>
|
|
539
|
+
<div
|
|
540
|
+
class="hidden w-full items-center justify-between md:order-1 md:flex md:w-auto"
|
|
541
|
+
id="navbar-language"
|
|
542
|
+
>
|
|
543
|
+
<ul
|
|
544
|
+
class="mt-4 flex flex-col rounded-lg border border-gray-100 bg-gray-50 p-4 font-medium md:mt-0 md:flex-row md:space-x-8 md:border-0 md:bg-white md:p-0 rtl:space-x-reverse dark:border-gray-700 dark:bg-gray-800 md:dark:bg-gray-900"
|
|
545
|
+
>
|
|
546
|
+
<li>
|
|
547
|
+
<a
|
|
548
|
+
class="block rounded bg-blue-700 px-3 py-2 text-white md:bg-transparent md:p-0 md:text-blue-700 md:dark:text-blue-500"
|
|
549
|
+
href="javascript:void(0)"
|
|
550
|
+
aria-current="page"
|
|
551
|
+
>
|
|
552
|
+
Home
|
|
553
|
+
</a>
|
|
554
|
+
</li>
|
|
555
|
+
<li>
|
|
556
|
+
<a
|
|
557
|
+
class="block rounded px-3 py-2 text-gray-900 hover:bg-gray-100 md:p-0 md:hover:bg-transparent md:hover:text-blue-700 dark:border-gray-700 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent md:dark:hover:text-blue-500"
|
|
558
|
+
href="javascript:void(0)"
|
|
559
|
+
>
|
|
560
|
+
About
|
|
561
|
+
</a>
|
|
562
|
+
</li>
|
|
563
|
+
<li>
|
|
564
|
+
<a
|
|
565
|
+
class="block rounded px-3 py-2 text-gray-900 hover:bg-gray-100 md:p-0 md:hover:bg-transparent md:hover:text-blue-700 dark:border-gray-700 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent md:dark:hover:text-blue-500"
|
|
566
|
+
href="javascript:void(0)"
|
|
567
|
+
>
|
|
568
|
+
Services
|
|
569
|
+
</a>
|
|
570
|
+
</li>
|
|
571
|
+
<li>
|
|
572
|
+
<a
|
|
573
|
+
class="block rounded px-3 py-2 text-gray-900 hover:bg-gray-100 md:p-0 md:hover:bg-transparent md:hover:text-blue-700 dark:border-gray-700 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent md:dark:hover:text-blue-500"
|
|
574
|
+
href="javascript:void(0)"
|
|
575
|
+
>
|
|
576
|
+
Pricing
|
|
577
|
+
</a>
|
|
578
|
+
</li>
|
|
579
|
+
<li>
|
|
580
|
+
<a
|
|
581
|
+
class="block rounded px-3 py-2 text-gray-900 hover:bg-gray-100 md:p-0 md:hover:bg-transparent md:hover:text-blue-700 dark:border-gray-700 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent md:dark:hover:text-blue-500"
|
|
582
|
+
href="javascript:void(0)"
|
|
583
|
+
>
|
|
584
|
+
Contact
|
|
585
|
+
</a>
|
|
586
|
+
</li>
|
|
587
|
+
</ul>
|
|
588
|
+
</div>
|
|
589
|
+
</div>
|
|
590
|
+
</nav>
|
|
591
|
+
`, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush }]
|
|
592
|
+
}] });
|
|
593
|
+
|
|
594
|
+
class TooltipComponent {
|
|
595
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.11", ngImport: i0, type: TooltipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
596
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.11", type: TooltipComponent, isStandalone: true, selector: "lib-tooltip", ngImport: i0, template: `
|
|
597
|
+
<p>tooltip works!</p>
|
|
598
|
+
`, isInline: true, styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
599
|
+
}
|
|
600
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.11", ngImport: i0, type: TooltipComponent, decorators: [{
|
|
601
|
+
type: Component,
|
|
602
|
+
args: [{ selector: 'lib-tooltip', standalone: true, imports: [CommonModule], template: `
|
|
603
|
+
<p>tooltip works!</p>
|
|
604
|
+
`, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush }]
|
|
605
|
+
}] });
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* Generated bundle index. Do not edit.
|
|
609
|
+
*/
|
|
610
|
+
|
|
611
|
+
export { DatePickerComponent, EditorComponent, NavbarComponent, TooltipComponent };
|
|
612
|
+
//# sourceMappingURL=semantic-components-ui.mjs.map
|