vira 0.4.0 → 0.5.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const allElementBookEntries: (import("element-book").
|
|
1
|
+
export declare const allElementBookEntries: (import("element-book").BookPage<undefined, {}> | import("element-book").BookPage<import("element-book").BookPage<undefined, {}>, {}> | import("element-book").BookPage<import("element-book").BookPage<import("element-book").BookPage<undefined, {}>, {}>, {}>)[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Options24Icon: import("../icon-svg").ViraIconSvg;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { html } from 'element-vir';
|
|
2
|
+
import { viraIconColorCssVars } from '../icon-color-css-vars';
|
|
3
|
+
import { defineIcon } from '../icon-svg';
|
|
4
|
+
export const Options24Icon = defineIcon({
|
|
5
|
+
name: 'Options24Icon',
|
|
6
|
+
svgTemplate: html `
|
|
7
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
8
|
+
<g fill="none" stroke-width="1px">
|
|
9
|
+
<circle cx="9.5" cy="5.5" r="2.5" />
|
|
10
|
+
<circle cx="16.5" cy="12.5" r="2.5" />
|
|
11
|
+
<circle cx="8.5" cy="18.5" r="2.5" />
|
|
12
|
+
</g>
|
|
13
|
+
<path
|
|
14
|
+
stroke="none"
|
|
15
|
+
fill="${viraIconColorCssVars['vira-icon-stroke-color'].value}"
|
|
16
|
+
d="M6 18a3 3 0 0 0 0 1H3v-1h3Zm5 1a3 3 0 0 0 0-1h10v1H11Zm3-7a3 3 0 0 0 0 1H3v-1h11Zm5 1a3 3 0 0 0 0-1h2v1h-2ZM7 5a3 3 0 0 0 0 1H3V5h4Zm5 1a3 3 0 0 0 0-1h9v1h-9Z"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
`,
|
|
20
|
+
});
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
export * from './icon-svg';
|
|
3
3
|
export * from './icon-svgs/element-16.icon';
|
|
4
4
|
export * from './icon-svgs/element-24.icon';
|
|
5
|
+
export * from './icon-svgs/options-24.icon';
|
|
5
6
|
export declare const allIconsByName: {
|
|
6
7
|
readonly Element16Icon: import("./icon-svg").ViraIconSvg;
|
|
7
8
|
readonly Element24Icon: import("./icon-svg").ViraIconSvg;
|
|
9
|
+
readonly Options24Icon: import("./icon-svg").ViraIconSvg;
|
|
8
10
|
};
|
package/dist/icons/index.js
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
/** This file is automatically updated by update-icon-exports.ts */
|
|
2
2
|
import { Element16Icon } from './icon-svgs/element-16.icon';
|
|
3
3
|
import { Element24Icon } from './icon-svgs/element-24.icon';
|
|
4
|
+
import { Options24Icon } from './icon-svgs/options-24.icon';
|
|
4
5
|
export * from './icon-svg';
|
|
5
6
|
export * from './icon-svgs/element-16.icon';
|
|
6
7
|
export * from './icon-svgs/element-24.icon';
|
|
8
|
+
export * from './icon-svgs/options-24.icon';
|
|
7
9
|
export const allIconsByName = {
|
|
8
10
|
Element16Icon,
|
|
9
11
|
Element24Icon,
|
|
12
|
+
Options24Icon,
|
|
10
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vira",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"homepage": "https://github.com/electrovir/vira",
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
"test:docs": "virmator code-in-markdown check"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"element-vir": "^14.0.
|
|
32
|
+
"element-vir": "^14.0.3",
|
|
33
33
|
"lit-css-vars": "^2.0.3"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@augment-vir/browser-testing": "^15.1
|
|
37
|
-
"@augment-vir/node-js": "^15.1
|
|
36
|
+
"@augment-vir/browser-testing": "^15.2.1",
|
|
37
|
+
"@augment-vir/node-js": "^15.2.1",
|
|
38
38
|
"@open-wc/testing": "^3.2.0",
|
|
39
39
|
"@types/chai": "^4.3.5",
|
|
40
40
|
"@types/mocha": "^10.0.1",
|