vira 28.9.1 → 28.11.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/dist/elements/vira-checkbox.element.d.ts +2 -1
- package/dist/elements/vira-checkbox.element.js +15 -6
- package/dist/icons/icon-svgs/chevron-down-24.icon.d.ts +8 -0
- package/dist/icons/icon-svgs/chevron-down-24.icon.js +30 -0
- package/dist/icons/icon-svgs/chevron-up-24.icon.d.ts +1 -1
- package/dist/icons/icon-svgs/chevron-up-24.icon.js +1 -1
- package/dist/icons/icon-svgs/document-search-24.icon.d.ts +8 -0
- package/dist/icons/icon-svgs/document-search-24.icon.js +48 -0
- package/dist/icons/icon-svgs/double-chevron-24.icon.d.ts +8 -0
- package/dist/icons/icon-svgs/double-chevron-24.icon.js +37 -0
- package/dist/icons/icon-svgs/eye-closed-24.icon.js +1 -0
- package/dist/icons/icon-svgs/eye-open-24.icon.js +1 -0
- package/dist/icons/icon-svgs/filter-24.icon.d.ts +8 -0
- package/dist/icons/icon-svgs/filter-24.icon.js +38 -0
- package/dist/icons/icon-svgs/sort-ascending-24.icon.d.ts +8 -0
- package/dist/icons/icon-svgs/sort-ascending-24.icon.js +51 -0
- package/dist/icons/icon-svgs/sort-descending-24.icon.d.ts +8 -0
- package/dist/icons/icon-svgs/sort-descending-24.icon.js +51 -0
- package/dist/icons/icon-svgs/x-24.icon.js +7 -13
- package/dist/icons/index.d.ts +12 -0
- package/dist/icons/index.js +18 -0
- package/package.json +9 -9
|
@@ -18,6 +18,7 @@ export type ViraCheckboxInputs = PartialWithUndefined<{
|
|
|
18
18
|
disabled: boolean;
|
|
19
19
|
label: string;
|
|
20
20
|
hasError: boolean;
|
|
21
|
+
horizontal: boolean;
|
|
21
22
|
}> & {
|
|
22
23
|
value: boolean;
|
|
23
24
|
};
|
|
@@ -30,4 +31,4 @@ export type ViraCheckboxInputs = PartialWithUndefined<{
|
|
|
30
31
|
*/
|
|
31
32
|
export declare const ViraCheckbox: import("element-vir").DeclarativeElementDefinition<"vira-checkbox", Readonly<ViraCheckboxInputs>, {}, {
|
|
32
33
|
valueChange: import("element-vir").DefineEvent<boolean>;
|
|
33
|
-
}, "vira-checkbox-", "vira-checkbox-", readonly [], readonly []>;
|
|
34
|
+
}, "vira-checkbox-horizontal", "vira-checkbox-", readonly [], readonly []>;
|
|
@@ -15,7 +15,10 @@ import { ViraIcon } from './vira-icon.element.js';
|
|
|
15
15
|
*/
|
|
16
16
|
export const ViraCheckbox = defineViraElement()({
|
|
17
17
|
tagName: 'vira-checkbox',
|
|
18
|
-
|
|
18
|
+
hostClasses: {
|
|
19
|
+
'vira-checkbox-horizontal': ({ inputs }) => !!inputs.horizontal,
|
|
20
|
+
},
|
|
21
|
+
styles: ({ hostClasses }) => css `
|
|
19
22
|
:host {
|
|
20
23
|
display: inline-flex;
|
|
21
24
|
}
|
|
@@ -46,6 +49,11 @@ export const ViraCheckbox = defineViraElement()({
|
|
|
46
49
|
cursor: pointer;
|
|
47
50
|
font-weight: ${viraFormCssVars['vira-form-label-font-weight'].value};
|
|
48
51
|
}
|
|
52
|
+
|
|
53
|
+
&:hover .custom-checkbox {
|
|
54
|
+
background-color: ${viraFormCssVars['vira-form-selection-hover-background-color']
|
|
55
|
+
.value};
|
|
56
|
+
}
|
|
49
57
|
}
|
|
50
58
|
|
|
51
59
|
${ViraIcon} {
|
|
@@ -75,11 +83,6 @@ export const ViraCheckbox = defineViraElement()({
|
|
|
75
83
|
border-color: ${viraFormCssVars['vira-form-error-foreground-color'].value};
|
|
76
84
|
}
|
|
77
85
|
|
|
78
|
-
&:hover {
|
|
79
|
-
background-color: ${viraFormCssVars['vira-form-selection-hover-background-color']
|
|
80
|
-
.value};
|
|
81
|
-
}
|
|
82
|
-
|
|
83
86
|
&:active {
|
|
84
87
|
background-color: ${viraFormCssVars['vira-form-selection-active-background-color']
|
|
85
88
|
.value};
|
|
@@ -89,6 +92,12 @@ export const ViraCheckbox = defineViraElement()({
|
|
|
89
92
|
${viraDisabledStyles};
|
|
90
93
|
}
|
|
91
94
|
}
|
|
95
|
+
|
|
96
|
+
${hostClasses['vira-checkbox-horizontal'].selector} label {
|
|
97
|
+
flex-direction: row-reverse;
|
|
98
|
+
align-items: center;
|
|
99
|
+
gap: 8px;
|
|
100
|
+
}
|
|
92
101
|
`,
|
|
93
102
|
events: {
|
|
94
103
|
valueChange: defineElementEvent(),
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A chevron that points upwards. See ChevronUp24Icon or one pointing upwards.
|
|
3
|
+
*
|
|
4
|
+
* @category Icon
|
|
5
|
+
* @category SVG
|
|
6
|
+
* @see https://electrovir.github.io/vira/book/icons/chevrondown24icon
|
|
7
|
+
*/
|
|
8
|
+
export declare const ChevronDown24Icon: import("../icon-svg.js").ViraIconSvg;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { html } from 'element-vir';
|
|
2
|
+
import { viraIconCssVars } from '../icon-css-vars.js';
|
|
3
|
+
import { defineIcon } from '../icon-svg.js';
|
|
4
|
+
/**
|
|
5
|
+
* A chevron that points upwards. See ChevronUp24Icon or one pointing upwards.
|
|
6
|
+
*
|
|
7
|
+
* @category Icon
|
|
8
|
+
* @category SVG
|
|
9
|
+
* @see https://electrovir.github.io/vira/book/icons/chevrondown24icon
|
|
10
|
+
*/
|
|
11
|
+
export const ChevronDown24Icon = defineIcon({
|
|
12
|
+
name: 'ChevronDown24Icon',
|
|
13
|
+
svgTemplate: html `
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
17
|
+
fill="none"
|
|
18
|
+
stroke-linecap="round"
|
|
19
|
+
stroke-linejoin="round"
|
|
20
|
+
width="24"
|
|
21
|
+
height="24"
|
|
22
|
+
viewBox="0 0 24 24"
|
|
23
|
+
>
|
|
24
|
+
<path
|
|
25
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
26
|
+
d="M6 8 L12 15 18 8"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
`,
|
|
30
|
+
});
|
|
@@ -2,7 +2,7 @@ import { html } from 'element-vir';
|
|
|
2
2
|
import { viraIconCssVars } from '../icon-css-vars.js';
|
|
3
3
|
import { defineIcon } from '../icon-svg.js';
|
|
4
4
|
/**
|
|
5
|
-
* A chevron that points upwards.
|
|
5
|
+
* A chevron that points upwards. See ChevronDown24Icon for one pointing downloads.
|
|
6
6
|
*
|
|
7
7
|
* @category Icon
|
|
8
8
|
* @category SVG
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* An icon that represents searching on a document or searching for a document.
|
|
3
|
+
*
|
|
4
|
+
* @category Icon
|
|
5
|
+
* @category SVG
|
|
6
|
+
* @see https://electrovir.github.io/vira/book/icons/documentsearch24icon
|
|
7
|
+
*/
|
|
8
|
+
export declare const DocumentSearch24Icon: import("../icon-svg.js").ViraIconSvg;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { html } from 'element-vir';
|
|
2
|
+
import { viraIconCssVars } from '../icon-css-vars.js';
|
|
3
|
+
import { defineIcon } from '../icon-svg.js';
|
|
4
|
+
/**
|
|
5
|
+
* An icon that represents searching on a document or searching for a document.
|
|
6
|
+
*
|
|
7
|
+
* @category Icon
|
|
8
|
+
* @category SVG
|
|
9
|
+
* @see https://electrovir.github.io/vira/book/icons/documentsearch24icon
|
|
10
|
+
*/
|
|
11
|
+
export const DocumentSearch24Icon = defineIcon({
|
|
12
|
+
name: 'DocumentSearch24Icon',
|
|
13
|
+
svgTemplate: html `
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xml:space="preserve"
|
|
17
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-miterlimit:100"
|
|
18
|
+
viewBox="0 0 24 24"
|
|
19
|
+
width="24"
|
|
20
|
+
height="24"
|
|
21
|
+
fill-rule="nonzero"
|
|
22
|
+
stroke-linecap="butt"
|
|
23
|
+
stroke-linejoin="round"
|
|
24
|
+
stroke-miterlimit="2"
|
|
25
|
+
>
|
|
26
|
+
<path
|
|
27
|
+
d="m19 9-6-6H5v18h14z"
|
|
28
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
29
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
30
|
+
fill=${viraIconCssVars['vira-icon-fill-color'].value}
|
|
31
|
+
/>
|
|
32
|
+
<circle
|
|
33
|
+
cx="11.7"
|
|
34
|
+
cy="12.5"
|
|
35
|
+
r="3.5"
|
|
36
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
37
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
38
|
+
fill=${viraIconCssVars['vira-icon-fill-color'].value}
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
d="m14.2 15 2.5 2.5"
|
|
42
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
43
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
44
|
+
fill=${viraIconCssVars['vira-icon-fill-color'].value}
|
|
45
|
+
/>
|
|
46
|
+
</svg>
|
|
47
|
+
`,
|
|
48
|
+
});
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { html } from 'element-vir';
|
|
2
|
+
import { viraIconCssVars } from '../icon-css-vars.js';
|
|
3
|
+
import { defineIcon } from '../icon-svg.js';
|
|
4
|
+
/**
|
|
5
|
+
* A icon with two opposing chevrons.
|
|
6
|
+
*
|
|
7
|
+
* @category Icon
|
|
8
|
+
* @category SVG
|
|
9
|
+
* @see https://electrovir.github.io/vira/book/icons/doublechevron24icon
|
|
10
|
+
*/
|
|
11
|
+
export const DoubleChevron24Icon = defineIcon({
|
|
12
|
+
name: 'DoubleChevron24Icon',
|
|
13
|
+
svgTemplate: html `
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xml:space="preserve"
|
|
17
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:miter;stroke-miterlimit:2"
|
|
18
|
+
viewBox="0 0 24 24"
|
|
19
|
+
width="24"
|
|
20
|
+
height="24"
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M16.5 8.5 12 4 7.5 8.5v7L12 20l4.5-4.5z"
|
|
24
|
+
fill-rule="nonzero"
|
|
25
|
+
fill=${viraIconCssVars['vira-icon-fill-color'].value}
|
|
26
|
+
stroke-width="none"
|
|
27
|
+
stroke="none"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
d="m7 15 5 5 5-5M7 9l5-5 5 5"
|
|
31
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
32
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
33
|
+
fill="none"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
`,
|
|
37
|
+
});
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { html } from 'element-vir';
|
|
2
|
+
import { viraIconCssVars } from '../icon-css-vars.js';
|
|
3
|
+
import { defineIcon } from '../icon-svg.js';
|
|
4
|
+
/**
|
|
5
|
+
* An icon symbol that represents filtering.
|
|
6
|
+
*
|
|
7
|
+
* @category Icon
|
|
8
|
+
* @category SVG
|
|
9
|
+
* @see https://electrovir.github.io/vira/book/icons/filter24icon
|
|
10
|
+
*/
|
|
11
|
+
export const Filter24Icon = defineIcon({
|
|
12
|
+
name: 'Filter24Icon',
|
|
13
|
+
svgTemplate: html `
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xml:space="preserve"
|
|
17
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
|
18
|
+
viewBox="0 0 24 24"
|
|
19
|
+
width="24"
|
|
20
|
+
height="24"
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M4 6h16l-6 12h-4z"
|
|
24
|
+
fill-rule="nonzero"
|
|
25
|
+
stroke="none"
|
|
26
|
+
stroke-width="0"
|
|
27
|
+
fill=${viraIconCssVars['vira-icon-fill-color'].value}
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
d="M3 6h18M6 12h12M9 18h6"
|
|
31
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
32
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
33
|
+
fill="none"
|
|
34
|
+
fill-rule="nonzero"
|
|
35
|
+
/>
|
|
36
|
+
</svg>
|
|
37
|
+
`,
|
|
38
|
+
});
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { html } from 'element-vir';
|
|
2
|
+
import { viraIconCssVars } from '../icon-css-vars.js';
|
|
3
|
+
import { defineIcon } from '../icon-svg.js';
|
|
4
|
+
/**
|
|
5
|
+
* A icon indicating ascending sorting.
|
|
6
|
+
*
|
|
7
|
+
* @category Icon
|
|
8
|
+
* @category SVG
|
|
9
|
+
* @see https://electrovir.github.io/vira/book/icons/sortascending24icon
|
|
10
|
+
*/
|
|
11
|
+
export const SortAscending24Icon = defineIcon({
|
|
12
|
+
name: 'SortAscending24Icon',
|
|
13
|
+
svgTemplate: html `
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xml:space="preserve"
|
|
17
|
+
fill-rule="evenodd"
|
|
18
|
+
clip-rule="evenodd"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
width="24"
|
|
21
|
+
height="24"
|
|
22
|
+
>
|
|
23
|
+
<path
|
|
24
|
+
fill=${viraIconCssVars['vira-icon-fill-color'].value}
|
|
25
|
+
fill-rule="nonzero"
|
|
26
|
+
d="M17.5 4C18.9 4 20 5.1 20 6.5V20H7V4z"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fill="none"
|
|
30
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
31
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
32
|
+
d="m3 8 4-4 4 4M7 4v16"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fill="none"
|
|
36
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
37
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
38
|
+
stroke-linecap="square"
|
|
39
|
+
stroke-linejoin="round"
|
|
40
|
+
d="M20 8h-5m0 2V6.5C15 5.1 16.1 4 17.5 4S20 5.1 20 6.5V10"
|
|
41
|
+
/>
|
|
42
|
+
<path
|
|
43
|
+
fill="none"
|
|
44
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
45
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
46
|
+
stroke-linecap="square"
|
|
47
|
+
d="M15 14h5l-5 6h5"
|
|
48
|
+
/>
|
|
49
|
+
</svg>
|
|
50
|
+
`,
|
|
51
|
+
});
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { html } from 'element-vir';
|
|
2
|
+
import { viraIconCssVars } from '../icon-css-vars.js';
|
|
3
|
+
import { defineIcon } from '../icon-svg.js';
|
|
4
|
+
/**
|
|
5
|
+
* A icon indicating descending sorting.
|
|
6
|
+
*
|
|
7
|
+
* @category Icon
|
|
8
|
+
* @category SVG
|
|
9
|
+
* @see https://electrovir.github.io/vira/book/icons/sortdescending24icon
|
|
10
|
+
*/
|
|
11
|
+
export const SortDescending24Icon = defineIcon({
|
|
12
|
+
name: 'SortDescending24Icon',
|
|
13
|
+
svgTemplate: html `
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xml:space="preserve"
|
|
17
|
+
fill-rule="evenodd"
|
|
18
|
+
clip-rule="evenodd"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
width="24"
|
|
21
|
+
height="24"
|
|
22
|
+
>
|
|
23
|
+
<path
|
|
24
|
+
fill=${viraIconCssVars['vira-icon-fill-color'].value}
|
|
25
|
+
fill-rule="nonzero"
|
|
26
|
+
d="M17.5 4C18.9 4 20 5.1 20 6.5V20H7V4z"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fill="none"
|
|
30
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
31
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
32
|
+
d="m3 16 4 4 4-4m-4 4V4"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fill="none"
|
|
36
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
37
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
38
|
+
stroke-linecap="square"
|
|
39
|
+
stroke-linejoin="round"
|
|
40
|
+
d="M20 8h-5m0 2V6.5C15 5.1 16.1 4 17.5 4S20 5.1 20 6.5V10"
|
|
41
|
+
/>
|
|
42
|
+
<path
|
|
43
|
+
fill="none"
|
|
44
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
45
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
46
|
+
stroke-linecap="square"
|
|
47
|
+
d="M15 14h5l-5 6h5"
|
|
48
|
+
/>
|
|
49
|
+
</svg>
|
|
50
|
+
`,
|
|
51
|
+
});
|
|
@@ -11,19 +11,13 @@ import { defineIcon } from '../icon-svg.js';
|
|
|
11
11
|
export const X24Icon = defineIcon({
|
|
12
12
|
name: 'X24Icon',
|
|
13
13
|
svgTemplate: html `
|
|
14
|
-
<svg
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
22
|
-
stroke-linecap="round"
|
|
23
|
-
stroke-linejoin="round"
|
|
24
|
-
aria-hidden="true"
|
|
25
|
-
>
|
|
26
|
-
<path d="M18 6L6 18M6 6l12 12" />
|
|
14
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
15
|
+
<path
|
|
16
|
+
d="M18 6L6 18M6 6l12 12"
|
|
17
|
+
fill="none"
|
|
18
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
19
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
20
|
+
/>
|
|
27
21
|
</svg>
|
|
28
22
|
`,
|
|
29
23
|
});
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -4,15 +4,19 @@ export * from './icon-svg.js';
|
|
|
4
4
|
export * from './icon-svgs/bell-24.icon.js';
|
|
5
5
|
export * from './icon-svgs/chat-24.icon.js';
|
|
6
6
|
export * from './icon-svgs/check-24.icon.js';
|
|
7
|
+
export * from './icon-svgs/chevron-down-24.icon.js';
|
|
7
8
|
export * from './icon-svgs/chevron-up-24.icon.js';
|
|
8
9
|
export * from './icon-svgs/close-x-24.icon.js';
|
|
9
10
|
export * from './icon-svgs/commit-24.icon.js';
|
|
10
11
|
export * from './icon-svgs/document-24.icon.js';
|
|
12
|
+
export * from './icon-svgs/document-search-24.icon.js';
|
|
13
|
+
export * from './icon-svgs/double-chevron-24.icon.js';
|
|
11
14
|
export * from './icon-svgs/element-16.icon.js';
|
|
12
15
|
export * from './icon-svgs/element-24.icon.js';
|
|
13
16
|
export * from './icon-svgs/external-link-24.icon.js';
|
|
14
17
|
export * from './icon-svgs/eye-closed-24.icon.js';
|
|
15
18
|
export * from './icon-svgs/eye-open-24.icon.js';
|
|
19
|
+
export * from './icon-svgs/filter-24.icon.js';
|
|
16
20
|
export * from './icon-svgs/link-24.icon.js';
|
|
17
21
|
export * from './icon-svgs/loader-24.icon.js';
|
|
18
22
|
export * from './icon-svgs/loader-animated-24.icon.js';
|
|
@@ -20,6 +24,8 @@ export * from './icon-svgs/lock-24.icon.js';
|
|
|
20
24
|
export * from './icon-svgs/options-24.icon.js';
|
|
21
25
|
export * from './icon-svgs/pencil-24.icon.js';
|
|
22
26
|
export * from './icon-svgs/shield-24.icon.js';
|
|
27
|
+
export * from './icon-svgs/sort-ascending-24.icon.js';
|
|
28
|
+
export * from './icon-svgs/sort-descending-24.icon.js';
|
|
23
29
|
export * from './icon-svgs/speaker-loud-24.icon.js';
|
|
24
30
|
export * from './icon-svgs/speaker-medium-24.icon.js';
|
|
25
31
|
export * from './icon-svgs/speaker-muted-24.icon.js';
|
|
@@ -41,15 +47,19 @@ export declare const allIconsByName: {
|
|
|
41
47
|
readonly Bell24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
42
48
|
readonly Chat24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
43
49
|
readonly Check24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
50
|
+
readonly ChevronDown24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
44
51
|
readonly ChevronUp24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
45
52
|
readonly CloseX24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
46
53
|
readonly Commit24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
47
54
|
readonly Document24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
55
|
+
readonly DocumentSearch24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
56
|
+
readonly DoubleChevron24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
48
57
|
readonly Element16Icon: import("./icon-svg.js").ViraIconSvg;
|
|
49
58
|
readonly Element24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
50
59
|
readonly ExternalLink24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
51
60
|
readonly EyeClosed24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
52
61
|
readonly EyeOpen24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
62
|
+
readonly Filter24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
53
63
|
readonly Link24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
54
64
|
readonly Loader24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
55
65
|
readonly LoaderAnimated24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
@@ -57,6 +67,8 @@ export declare const allIconsByName: {
|
|
|
57
67
|
readonly Options24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
58
68
|
readonly Pencil24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
59
69
|
readonly Shield24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
70
|
+
readonly SortAscending24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
71
|
+
readonly SortDescending24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
60
72
|
readonly SpeakerLoud24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
61
73
|
readonly SpeakerMedium24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
62
74
|
readonly SpeakerMuted24Icon: import("./icon-svg.js").ViraIconSvg;
|
package/dist/icons/index.js
CHANGED
|
@@ -2,15 +2,19 @@
|
|
|
2
2
|
import { Bell24Icon } from './icon-svgs/bell-24.icon.js';
|
|
3
3
|
import { Chat24Icon } from './icon-svgs/chat-24.icon.js';
|
|
4
4
|
import { Check24Icon } from './icon-svgs/check-24.icon.js';
|
|
5
|
+
import { ChevronDown24Icon } from './icon-svgs/chevron-down-24.icon.js';
|
|
5
6
|
import { ChevronUp24Icon } from './icon-svgs/chevron-up-24.icon.js';
|
|
6
7
|
import { CloseX24Icon } from './icon-svgs/close-x-24.icon.js';
|
|
7
8
|
import { Commit24Icon } from './icon-svgs/commit-24.icon.js';
|
|
8
9
|
import { Document24Icon } from './icon-svgs/document-24.icon.js';
|
|
10
|
+
import { DocumentSearch24Icon } from './icon-svgs/document-search-24.icon.js';
|
|
11
|
+
import { DoubleChevron24Icon } from './icon-svgs/double-chevron-24.icon.js';
|
|
9
12
|
import { Element16Icon } from './icon-svgs/element-16.icon.js';
|
|
10
13
|
import { Element24Icon } from './icon-svgs/element-24.icon.js';
|
|
11
14
|
import { ExternalLink24Icon } from './icon-svgs/external-link-24.icon.js';
|
|
12
15
|
import { EyeClosed24Icon } from './icon-svgs/eye-closed-24.icon.js';
|
|
13
16
|
import { EyeOpen24Icon } from './icon-svgs/eye-open-24.icon.js';
|
|
17
|
+
import { Filter24Icon } from './icon-svgs/filter-24.icon.js';
|
|
14
18
|
import { Link24Icon } from './icon-svgs/link-24.icon.js';
|
|
15
19
|
import { Loader24Icon } from './icon-svgs/loader-24.icon.js';
|
|
16
20
|
import { LoaderAnimated24Icon } from './icon-svgs/loader-animated-24.icon.js';
|
|
@@ -18,6 +22,8 @@ import { Lock24Icon } from './icon-svgs/lock-24.icon.js';
|
|
|
18
22
|
import { Options24Icon } from './icon-svgs/options-24.icon.js';
|
|
19
23
|
import { Pencil24Icon } from './icon-svgs/pencil-24.icon.js';
|
|
20
24
|
import { Shield24Icon } from './icon-svgs/shield-24.icon.js';
|
|
25
|
+
import { SortAscending24Icon } from './icon-svgs/sort-ascending-24.icon.js';
|
|
26
|
+
import { SortDescending24Icon } from './icon-svgs/sort-descending-24.icon.js';
|
|
21
27
|
import { SpeakerLoud24Icon } from './icon-svgs/speaker-loud-24.icon.js';
|
|
22
28
|
import { SpeakerMedium24Icon } from './icon-svgs/speaker-medium-24.icon.js';
|
|
23
29
|
import { SpeakerMuted24Icon } from './icon-svgs/speaker-muted-24.icon.js';
|
|
@@ -35,15 +41,19 @@ export * from './icon-svg.js';
|
|
|
35
41
|
export * from './icon-svgs/bell-24.icon.js';
|
|
36
42
|
export * from './icon-svgs/chat-24.icon.js';
|
|
37
43
|
export * from './icon-svgs/check-24.icon.js';
|
|
44
|
+
export * from './icon-svgs/chevron-down-24.icon.js';
|
|
38
45
|
export * from './icon-svgs/chevron-up-24.icon.js';
|
|
39
46
|
export * from './icon-svgs/close-x-24.icon.js';
|
|
40
47
|
export * from './icon-svgs/commit-24.icon.js';
|
|
41
48
|
export * from './icon-svgs/document-24.icon.js';
|
|
49
|
+
export * from './icon-svgs/document-search-24.icon.js';
|
|
50
|
+
export * from './icon-svgs/double-chevron-24.icon.js';
|
|
42
51
|
export * from './icon-svgs/element-16.icon.js';
|
|
43
52
|
export * from './icon-svgs/element-24.icon.js';
|
|
44
53
|
export * from './icon-svgs/external-link-24.icon.js';
|
|
45
54
|
export * from './icon-svgs/eye-closed-24.icon.js';
|
|
46
55
|
export * from './icon-svgs/eye-open-24.icon.js';
|
|
56
|
+
export * from './icon-svgs/filter-24.icon.js';
|
|
47
57
|
export * from './icon-svgs/link-24.icon.js';
|
|
48
58
|
export * from './icon-svgs/loader-24.icon.js';
|
|
49
59
|
export * from './icon-svgs/loader-animated-24.icon.js';
|
|
@@ -51,6 +61,8 @@ export * from './icon-svgs/lock-24.icon.js';
|
|
|
51
61
|
export * from './icon-svgs/options-24.icon.js';
|
|
52
62
|
export * from './icon-svgs/pencil-24.icon.js';
|
|
53
63
|
export * from './icon-svgs/shield-24.icon.js';
|
|
64
|
+
export * from './icon-svgs/sort-ascending-24.icon.js';
|
|
65
|
+
export * from './icon-svgs/sort-descending-24.icon.js';
|
|
54
66
|
export * from './icon-svgs/speaker-loud-24.icon.js';
|
|
55
67
|
export * from './icon-svgs/speaker-medium-24.icon.js';
|
|
56
68
|
export * from './icon-svgs/speaker-muted-24.icon.js';
|
|
@@ -72,15 +84,19 @@ export const allIconsByName = {
|
|
|
72
84
|
Bell24Icon,
|
|
73
85
|
Chat24Icon,
|
|
74
86
|
Check24Icon,
|
|
87
|
+
ChevronDown24Icon,
|
|
75
88
|
ChevronUp24Icon,
|
|
76
89
|
CloseX24Icon,
|
|
77
90
|
Commit24Icon,
|
|
78
91
|
Document24Icon,
|
|
92
|
+
DocumentSearch24Icon,
|
|
93
|
+
DoubleChevron24Icon,
|
|
79
94
|
Element16Icon,
|
|
80
95
|
Element24Icon,
|
|
81
96
|
ExternalLink24Icon,
|
|
82
97
|
EyeClosed24Icon,
|
|
83
98
|
EyeOpen24Icon,
|
|
99
|
+
Filter24Icon,
|
|
84
100
|
Link24Icon,
|
|
85
101
|
Loader24Icon,
|
|
86
102
|
LoaderAnimated24Icon,
|
|
@@ -88,6 +104,8 @@ export const allIconsByName = {
|
|
|
88
104
|
Options24Icon,
|
|
89
105
|
Pencil24Icon,
|
|
90
106
|
Shield24Icon,
|
|
107
|
+
SortAscending24Icon,
|
|
108
|
+
SortDescending24Icon,
|
|
91
109
|
SpeakerLoud24Icon,
|
|
92
110
|
SpeakerMedium24Icon,
|
|
93
111
|
SpeakerMuted24Icon,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vira",
|
|
3
|
-
"version": "28.
|
|
3
|
+
"version": "28.11.0",
|
|
4
4
|
"description": "A simple and highly versatile design system using element-vir.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"design",
|
|
@@ -38,30 +38,30 @@
|
|
|
38
38
|
"test:docs": "virmator docs check"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@augment-vir/assert": "^31.
|
|
42
|
-
"@augment-vir/common": "^31.
|
|
43
|
-
"@augment-vir/web": "^31.
|
|
41
|
+
"@augment-vir/assert": "^31.54.3",
|
|
42
|
+
"@augment-vir/common": "^31.54.3",
|
|
43
|
+
"@augment-vir/web": "^31.54.3",
|
|
44
44
|
"colorjs.io": "^0.5.2",
|
|
45
45
|
"date-vir": "^8.0.0",
|
|
46
46
|
"device-navigation": "^4.5.5",
|
|
47
47
|
"lit-css-vars": "^3.0.11",
|
|
48
|
-
"observavir": "^2.
|
|
48
|
+
"observavir": "^2.2.0",
|
|
49
49
|
"page-active": "^1.0.3",
|
|
50
50
|
"spa-router-vir": "^6.3.1",
|
|
51
|
-
"type-fest": "^5.
|
|
51
|
+
"type-fest": "^5.2.0",
|
|
52
52
|
"typed-event-target": "^4.1.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@augment-vir/test": "^31.
|
|
55
|
+
"@augment-vir/test": "^31.54.3",
|
|
56
56
|
"@web/dev-server-esbuild": "^1.0.4",
|
|
57
57
|
"@web/test-runner": "^0.20.2",
|
|
58
58
|
"@web/test-runner-commands": "^0.9.0",
|
|
59
59
|
"@web/test-runner-playwright": "^0.11.1",
|
|
60
60
|
"@web/test-runner-visual-regression": "^0.10.0",
|
|
61
|
-
"esbuild": "^0.
|
|
61
|
+
"esbuild": "^0.27.0",
|
|
62
62
|
"istanbul-smart-text-reporter": "^1.1.5",
|
|
63
63
|
"markdown-code-example-inserter": "^3.0.3",
|
|
64
|
-
"typedoc": "^0.28.
|
|
64
|
+
"typedoc": "^0.28.15",
|
|
65
65
|
"typescript": "5.9.3",
|
|
66
66
|
"vite": "^7.1.12",
|
|
67
67
|
"vite-tsconfig-paths": "^5.1.4"
|