@oicl/openbridge-webcomponents-full-bundle 2.0.0-next.45 → 2.0.0-next.49

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.
Files changed (95) hide show
  1. package/.storybook/ComponentPreview.tsx +26 -0
  2. package/.storybook/PreviewTemplate.tsx +99 -0
  3. package/.storybook/action-handler.ts +81 -0
  4. package/.storybook/channels.ts +44 -0
  5. package/.storybook/main.ts +313 -0
  6. package/.storybook/manager.ts +71 -0
  7. package/.storybook/openbridgeTheme.ts +197 -0
  8. package/.storybook/preview-head.html +15 -0
  9. package/.storybook/preview.tsx +129 -0
  10. package/.storybook/vitest.setup.ts +23 -0
  11. package/bundle/openbridge-webcomponents.bundle.js +14869 -14889
  12. package/bundle/openbridge-webcomponents.bundle.js.map +1 -1
  13. package/custom-elements.json +81 -82
  14. package/dist/components/badge/badge.css.js +15 -15
  15. package/dist/components/icon-button/icon-button.d.ts +4 -0
  16. package/dist/components/icon-button/icon-button.d.ts.map +1 -1
  17. package/dist/components/icon-button/icon-button.js.map +1 -1
  18. package/dist/navigation-instruments/compass/compass.d.ts +3 -3
  19. package/dist/navigation-instruments/compass/compass.d.ts.map +1 -1
  20. package/dist/navigation-instruments/compass/compass.js +3 -3
  21. package/dist/navigation-instruments/compass/compass.js.map +1 -1
  22. package/dist/navigation-instruments/compass-indicator/compass-indicator.d.ts +12 -0
  23. package/dist/navigation-instruments/compass-indicator/compass-indicator.d.ts.map +1 -1
  24. package/dist/navigation-instruments/compass-indicator/compass-indicator.js +9 -1
  25. package/dist/navigation-instruments/compass-indicator/compass-indicator.js.map +1 -1
  26. package/dist/navigation-instruments/velocity-projection-plot/velocity-projection-plot.d.ts +4 -4
  27. package/dist/navigation-instruments/velocity-projection-plot/velocity-projection-plot.d.ts.map +1 -1
  28. package/dist/navigation-instruments/velocity-projection-plot/velocity-projection-plot.js +15 -14
  29. package/dist/navigation-instruments/velocity-projection-plot/velocity-projection-plot.js.map +1 -1
  30. package/dist/navigation-instruments/watch/environment.d.ts +39 -1
  31. package/dist/navigation-instruments/watch/environment.d.ts.map +1 -1
  32. package/dist/navigation-instruments/watch/environment.js +71 -88
  33. package/dist/navigation-instruments/watch/environment.js.map +1 -1
  34. package/dist/navigation-instruments/watch/watch.d.ts +1 -1
  35. package/dist/navigation-instruments/watch/watch.d.ts.map +1 -1
  36. package/dist/navigation-instruments/watch/watch.js +4 -4
  37. package/dist/navigation-instruments/watch/watch.js.map +1 -1
  38. package/dist/navigation-instruments/wind/wind.d.ts +1 -1
  39. package/dist/navigation-instruments/wind/wind.d.ts.map +1 -1
  40. package/dist/navigation-instruments/wind/wind.js +3 -3
  41. package/dist/navigation-instruments/wind/wind.js.map +1 -1
  42. package/dist/navigation-instruments/wind-indicator/wind-indicator.d.ts +63 -9
  43. package/dist/navigation-instruments/wind-indicator/wind-indicator.d.ts.map +1 -1
  44. package/dist/navigation-instruments/wind-indicator/wind-indicator.js +57 -1995
  45. package/dist/navigation-instruments/wind-indicator/wind-indicator.js.map +1 -1
  46. package/dist/navigation-instruments/wind-propulsion/wind-propulsion.d.ts +1 -1
  47. package/dist/navigation-instruments/wind-propulsion/wind-propulsion.d.ts.map +1 -1
  48. package/dist/navigation-instruments/wind-propulsion/wind-propulsion.js +4 -4
  49. package/dist/navigation-instruments/wind-propulsion/wind-propulsion.js.map +1 -1
  50. package/eslint.config.mjs +589 -0
  51. package/fix-imports.mjs +185 -0
  52. package/fix-js-extensions.mjs +44 -0
  53. package/lit-localize.json +15 -0
  54. package/new-component.ts +148 -0
  55. package/package.json +56 -3
  56. package/postcss.config.mjs +195 -0
  57. package/script/check-css-mixins.ts +191 -0
  58. package/script/check-css-variables.ts +280 -0
  59. package/script/convert-icons.ts +202 -0
  60. package/script/convert-vessel-svg-to-ts.ts +110 -0
  61. package/script/docgen/README.md +95 -0
  62. package/script/docgen/docs-gen.ts +225 -0
  63. package/script/docgen/prompt-system.txt +187 -0
  64. package/script/download-alert-icons.ts +193 -0
  65. package/script/download-icons.ts +314 -0
  66. package/script/figmavariables.json +139 -0
  67. package/script/generate-bundle-entry.ts +77 -0
  68. package/script/prepare-full-bundle.ts +105 -0
  69. package/script/sort-custom-element-manifest.ts +67 -0
  70. package/src/components/badge/badge.css +15 -15
  71. package/src/components/badge/badge.stories.ts +2 -0
  72. package/src/components/icon-button/icon-button.ts +4 -0
  73. package/src/navigation-instruments/compass/compass.stories.ts +5 -2
  74. package/src/navigation-instruments/compass/compass.ts +4 -4
  75. package/src/navigation-instruments/compass-indicator/compass-indicator.stories.ts +34 -1
  76. package/src/navigation-instruments/compass-indicator/compass-indicator.ts +19 -1
  77. package/src/navigation-instruments/velocity-projection-plot/velocity-projection-plot.stories.ts +13 -13
  78. package/src/navigation-instruments/velocity-projection-plot/velocity-projection-plot.ts +15 -11
  79. package/src/navigation-instruments/watch/environment.ts +120 -87
  80. package/src/navigation-instruments/watch/watch.stories.ts +2 -2
  81. package/src/navigation-instruments/watch/watch.ts +3 -3
  82. package/src/navigation-instruments/wind/wind.stories.ts +4 -3
  83. package/src/navigation-instruments/wind/wind.ts +2 -2
  84. package/src/navigation-instruments/wind-indicator/wind-indicator.stories.ts +22 -12
  85. package/src/navigation-instruments/wind-indicator/wind-indicator.ts +91 -46
  86. package/src/navigation-instruments/wind-propulsion/wind-propulsion.stories.ts +3 -3
  87. package/src/navigation-instruments/wind-propulsion/wind-propulsion.ts +3 -3
  88. package/tsconfig.json +38 -0
  89. package/vite.config.ts +107 -0
  90. package/vitest.browser.config.ts +14 -0
  91. package/vitest.config.ts +51 -0
  92. package/xliff/es-419.xlf +111 -0
  93. package/xliff/fi-FI.xlf +139 -0
  94. package/dist/NotoSans.ttf +0 -0
  95. package/dist/oicl.svg +0 -4
@@ -43,8 +43,8 @@ const meta: Meta<typeof ObcWindPropulsion> = {
43
43
  options: Object.values(WindPropulsionPriorityElement),
44
44
  },
45
45
  touching: {control: 'boolean'},
46
- currentWindSpeedBeaufort: {
47
- control: {type: 'range', min: 0, max: 12, step: 1},
46
+ currentWindSpeedKnots: {
47
+ control: {type: 'range', min: 0, max: 75, step: 1},
48
48
  },
49
49
  currentWindFromDirection: {
50
50
  control: {type: 'range', min: 0, max: 360, step: 1},
@@ -138,7 +138,7 @@ export const WithWind: Story = {
138
138
  sailAngleSetpoint: 10,
139
139
  state: InstrumentState.active,
140
140
  priority: Priority.enhanced,
141
- currentWindSpeedBeaufort: 5,
141
+ currentWindSpeedKnots: 25,
142
142
  currentWindFromDirection: 270,
143
143
  priorityElements: [WindPropulsionPriorityElement.forceBar],
144
144
  },
@@ -91,7 +91,7 @@ export class ObcWindPropulsion extends LitElement {
91
91
  @property({type: String}) tickmarkStyle: TickmarkStyle =
92
92
  TickmarkStyle.regular;
93
93
 
94
- @property({type: Number}) currentWindSpeedBeaufort: number | null = null;
94
+ @property({type: Number}) currentWindSpeedKnots: number | null = null;
95
95
  @property({type: Number}) currentWindFromDirection: number | null = null;
96
96
 
97
97
  @property({type: Array, attribute: false}) sailAngleAdvices: AngleAdvice[] =
@@ -139,7 +139,7 @@ export class ObcWindPropulsion extends LitElement {
139
139
 
140
140
  private getPadding(): number {
141
141
  if (
142
- this.currentWindSpeedBeaufort != null &&
142
+ this.currentWindSpeedKnots != null &&
143
143
  this.currentWindFromDirection != null
144
144
  ) {
145
145
  return 72;
@@ -259,7 +259,7 @@ export class ObcWindPropulsion extends LitElement {
259
259
  .tickmarkStyle=${this.tickmarkStyle}
260
260
  .watchCircleType=${WatchCircleType.single}
261
261
  .advices=${this.angleAdviceRaw}
262
- .wind=${this.currentWindSpeedBeaufort}
262
+ .windKnots=${this.currentWindSpeedKnots}
263
263
  .windFromDirectionDeg=${this.currentWindFromDirection}
264
264
  .windColor=${this.colorFor(WindPropulsionPriorityElement.wind)}
265
265
  ></obc-watch>
package/tsconfig.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es2021",
4
+ "module": "es2020",
5
+ "lib": ["es2021", "DOM", "DOM.Iterable"],
6
+ "declaration": true,
7
+ "declarationMap": true,
8
+ "sourceMap": true,
9
+ "inlineSources": true,
10
+ "outDir": "./dist",
11
+ "rootDir": "./src",
12
+ "strict": true,
13
+ "noUnusedLocals": true,
14
+ "noUnusedParameters": true,
15
+ "noImplicitReturns": true,
16
+ "noFallthroughCasesInSwitch": true,
17
+ "noImplicitAny": true,
18
+ "noImplicitThis": true,
19
+ "moduleResolution": "node",
20
+ "allowSyntheticDefaultImports": true,
21
+ "experimentalDecorators": true,
22
+ "forceConsistentCasingInFileNames": true,
23
+ "noImplicitOverride": true,
24
+ "skipLibCheck": true,
25
+ "plugins": [
26
+ {
27
+ "name": "@jackolope/ts-lit-plugin",
28
+ "strict": true,
29
+ "rules": {
30
+ "no-invalid-css": "off"
31
+ },
32
+ "globalAttributes": ["popover", "closedby"]
33
+ }
34
+ ]
35
+ },
36
+ "include": ["src/**/*.ts"],
37
+ "exclude": ["node_modules", "dist", "src/**/*.stories.ts"]
38
+ }
package/vite.config.ts ADDED
@@ -0,0 +1,107 @@
1
+ import postcssLit from 'rollup-plugin-postcss-lit';
2
+ import {defineConfig} from 'vite';
3
+ import dts from 'vite-plugin-dts';
4
+ import {globbySync} from 'globby';
5
+ import postcss from 'postcss';
6
+ import postcssConfig from './postcss.config.mjs';
7
+ import fs from 'fs';
8
+ import path from 'path';
9
+
10
+ const input = globbySync('src/**/*.ts', {
11
+ ignore: [
12
+ 'src/**/*.stories.ts',
13
+ 'src/**/*.spec.ts',
14
+ 'src/**/*.test.ts',
15
+ 'src/storybook-util.ts',
16
+ 'src/ar/_test-utils.ts',
17
+ ],
18
+ });
19
+
20
+ // https://vitejs.dev/config/
21
+ export default defineConfig(({mode}) => {
22
+ const isBundleMode = mode === 'bundle';
23
+
24
+ return {
25
+ build: {
26
+ minify: false,
27
+ lib: {
28
+ entry: 'src/index.ts',
29
+ name: 'openbridge-webcomponents',
30
+ fileName: 'openbridge-webcomponents',
31
+ formats: ['es'],
32
+ },
33
+ rollupOptions: {
34
+ input: isBundleMode ? 'bundle.ts' : input,
35
+ external: isBundleMode
36
+ ? // For bundle mode, bundle everything (no externals)
37
+ []
38
+ : // For regular mode, externalize as before
39
+ (id) =>
40
+ id.startsWith('lit') ||
41
+ id.startsWith('@lit') ||
42
+ id.startsWith('uplot') ||
43
+ id.startsWith('chart.js') ||
44
+ id.startsWith('@kurkle/color'),
45
+ preserveEntrySignatures: 'strict',
46
+ output: isBundleMode
47
+ ? // Bundle mode: single file output
48
+ {
49
+ format: 'es',
50
+ entryFileNames: 'openbridge-webcomponents.bundle.js',
51
+ dir: 'bundle',
52
+ sourcemap: true,
53
+ preserveModules: false,
54
+ inlineDynamicImports: true,
55
+ }
56
+ : // Regular mode: preserve modules
57
+ {
58
+ format: 'es',
59
+ entryFileNames: (opt) => {
60
+ return `${opt.name}.js`;
61
+ },
62
+ sourcemap: true,
63
+ preserveModules: true,
64
+ preserveModulesRoot: 'src',
65
+ inlineDynamicImports: false,
66
+ },
67
+ },
68
+ },
69
+ plugins: [
70
+ postcssLit(),
71
+ dts({
72
+ clearPureImport: false,
73
+ exclude: [
74
+ 'src/**/*.stories.ts',
75
+ 'src/**/*.spec.ts',
76
+ 'src/**/*.test.ts',
77
+ 'src/storybook-util.ts',
78
+ 'src/ar/_test-utils.ts',
79
+ ],
80
+ }),
81
+ {
82
+ name: 'custom-postcss',
83
+ async generateBundle() {
84
+ const inputCSS = path.resolve(__dirname, 'src/main.css'); // Your source CSS
85
+ // Make dist folder if it doesn't exist
86
+ if (!fs.existsSync(path.resolve(__dirname, 'dist'))) {
87
+ fs.mkdirSync(path.resolve(__dirname, 'dist'));
88
+ }
89
+ const outputCSS = path.resolve(__dirname, 'dist/openbridge.css'); // Destination
90
+
91
+ if (fs.existsSync(inputCSS)) {
92
+ const css = fs.readFileSync(inputCSS, 'utf-8');
93
+ const result = await postcss(postcssConfig({}).plugins).process(
94
+ css,
95
+ {
96
+ from: inputCSS,
97
+ to: outputCSS,
98
+ }
99
+ );
100
+
101
+ fs.writeFileSync(outputCSS, result.css);
102
+ }
103
+ },
104
+ },
105
+ ],
106
+ };
107
+ });
@@ -0,0 +1,14 @@
1
+ import {defineConfig} from 'vitest/config';
2
+ import {playwright} from '@vitest/browser-playwright';
3
+
4
+ export default defineConfig({
5
+ test: {
6
+ // ignore files in dist folder
7
+ exclude: ['dist/**', 'node_modules/**'],
8
+ browser: {
9
+ enabled: true,
10
+ provider: playwright(),
11
+ instances: [{browser: 'chromium'}],
12
+ },
13
+ },
14
+ });
@@ -0,0 +1,51 @@
1
+ import {defineConfig} from 'vitest/config';
2
+ import {playwright} from '@vitest/browser-playwright';
3
+
4
+ import {storybookTest} from '@storybook/addon-vitest/vitest-plugin';
5
+ import {storybookVis} from 'storybook-addon-vis/vitest-plugin';
6
+
7
+ import path from 'node:path';
8
+ import {fileURLToPath} from 'node:url';
9
+
10
+ const dirname = path.dirname(fileURLToPath(import.meta.url));
11
+
12
+ export default defineConfig({
13
+ test: {
14
+ projects: [
15
+ {
16
+ extends: true,
17
+ plugins: [
18
+ storybookTest({
19
+ // The location of your Storybook config, main.js|ts
20
+ configDir: path.join(dirname, '.storybook'),
21
+ // This should match your package.json script to run Storybook
22
+ // The --no-open flag will skip the automatic opening of a browser
23
+ storybookScript: 'npm run storybook --no-open',
24
+ tags: {
25
+ exclude: ['skip-test'],
26
+ },
27
+ }),
28
+ storybookVis({
29
+ comparisonMethod: 'pixel',
30
+ failureThreshold: 4,
31
+ failureThresholdType: 'pixel',
32
+ snapshotRootDir: (config) =>
33
+ path.join(dirname, '__vis__', config.platform),
34
+ }),
35
+ ],
36
+ test: {
37
+ name: 'storybook',
38
+ setupFiles: ['./.storybook/vitest.setup.ts'],
39
+ // Enable browser mode
40
+ browser: {
41
+ enabled: true,
42
+ // Make sure to install Playwright
43
+ provider: playwright({}),
44
+ headless: true,
45
+ instances: [{browser: 'chromium'}],
46
+ },
47
+ },
48
+ },
49
+ ],
50
+ },
51
+ });
@@ -0,0 +1,111 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
3
+ <file target-language="es-419" source-language="en" original="lit-localize-inputs" datatype="plaintext">
4
+ <body>
5
+ <trans-unit id="sa7f8e003ff63ef9f">
6
+ <source>No active alerts</source>
7
+ <target>No alertas activas</target>
8
+ </trans-unit>
9
+ <trans-unit id="s3cd891731e99f7e6">
10
+ <source>Active alerts</source>
11
+ <target>Alertas activas</target>
12
+ </trans-unit>
13
+ <trans-unit id="s8119af112f965c78">
14
+ <source>Brilliance</source>
15
+ <target>Brillantez</target>
16
+ </trans-unit>
17
+ <trans-unit id="se0955919920ee87d">
18
+ <source>Day</source>
19
+ <target>Día</target>
20
+ </trans-unit>
21
+ <trans-unit id="s0f3699a7bd401f61">
22
+ <source>Night</source>
23
+ <target>Noche</target>
24
+ </trans-unit>
25
+ <trans-unit id="sf993bb199fefbe04">
26
+ <source>All</source>
27
+ </trans-unit>
28
+ <trans-unit id="s01b603dddbaba7b6">
29
+ <source>Unacked</source>
30
+ </trans-unit>
31
+ <trans-unit id="se92d11374fcdf768">
32
+ <source>No unacknowledged alerts</source>
33
+ </trans-unit>
34
+ <trans-unit id="sf268637d594dacb2">
35
+ <source>Shelved</source>
36
+ </trans-unit>
37
+ <trans-unit id="s2a2488656f97b746">
38
+ <source>No shelved alerts</source>
39
+ </trans-unit>
40
+ <trans-unit id="sf59d9197d2e50c93">
41
+ <source>Blocked</source>
42
+ </trans-unit>
43
+ <trans-unit id="s61a9ee872da3a0cd">
44
+ <source>No blocked alerts</source>
45
+ </trans-unit>
46
+ <trans-unit id="s16fccc311f4779f6">
47
+ <source>Rectified</source>
48
+ </trans-unit>
49
+ <trans-unit id="seb27af82aef6a03e">
50
+ <source>No rectified alerts</source>
51
+ </trans-unit>
52
+ <trans-unit id="sfa32c219a0764262">
53
+ <source>ACK</source>
54
+ </trans-unit>
55
+ <trans-unit id="s5ba9818f6a39054c">
56
+ <source>Go to the 'Alert list' for more details or to manage existing alerts.</source>
57
+ </trans-unit>
58
+ <trans-unit id="sa6ef04345891fb38">
59
+ <source>ACK visible</source>
60
+ </trans-unit>
61
+ <trans-unit id="s68395a4c26a9e8ac">
62
+ <source>Silence</source>
63
+ </trans-unit>
64
+ <trans-unit id="s88d1c1e15ca1aade">
65
+ <source>Alerts</source>
66
+ </trans-unit>
67
+ <trans-unit id="s3cf89cb47fdde7e9">
68
+ <source>Link</source>
69
+ </trans-unit>
70
+ <trans-unit id="s47278872f6826da8">
71
+ <source>Dusk</source>
72
+ </trans-unit>
73
+ <trans-unit id="s9e34794bcfdc6665">
74
+ <source>Bright</source>
75
+ </trans-unit>
76
+ <trans-unit id="s33e301ba1f4a6864">
77
+ <source>Screen Control</source>
78
+ </trans-unit>
79
+ <trans-unit id="s6686fcc6d2c8f0bd">
80
+ <source>Note</source>
81
+ </trans-unit>
82
+ <trans-unit id="sfbc33dd48f23752c">
83
+ <source>Tag ID</source>
84
+ </trans-unit>
85
+ <trans-unit id="s079a052719914d71">
86
+ <source>Category</source>
87
+ </trans-unit>
88
+ <trans-unit id="sa2b9faa7ad068cfc">
89
+ <source>Activated</source>
90
+ </trans-unit>
91
+ <trans-unit id="s35aab6bf5dda3be0">
92
+ <source>Alert timer</source>
93
+ </trans-unit>
94
+ <trans-unit id="sdc7335a13d9e03f5">
95
+ <source>Acknowledged</source>
96
+ </trans-unit>
97
+ <trans-unit id="s93c7817bb872836a">
98
+ <source>Acknowledged by</source>
99
+ </trans-unit>
100
+ <trans-unit id="sf2de3605b3655264">
101
+ <source>Shelfing timer</source>
102
+ </trans-unit>
103
+ <trans-unit id="s097d821eb8e9069f">
104
+ <source>Shelved by</source>
105
+ </trans-unit>
106
+ <trans-unit id="sa711a6fcc9552dbf">
107
+ <source>Readout</source>
108
+ </trans-unit>
109
+ </body>
110
+ </file>
111
+ </xliff>
@@ -0,0 +1,139 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
3
+ <file target-language="fi-FI" source-language="en" original="lit-localize-inputs" datatype="plaintext">
4
+ <body>
5
+ <trans-unit id="sf993bb199fefbe04">
6
+ <source>All</source>
7
+ <target>Kaikki</target>
8
+ </trans-unit>
9
+ <trans-unit id="sa7f8e003ff63ef9f">
10
+ <source>No active alerts</source>
11
+ <target>Ei aktiivisia hälytyksiä</target>
12
+ </trans-unit>
13
+ <trans-unit id="s01b603dddbaba7b6">
14
+ <source>Unacked</source>
15
+ <target>Vahvistamaton</target>
16
+ </trans-unit>
17
+ <trans-unit id="se92d11374fcdf768">
18
+ <source>No unacknowledged alerts</source>
19
+ <target>Ei vahvistamattomia hälytyksiä</target>
20
+ </trans-unit>
21
+ <trans-unit id="sf268637d594dacb2">
22
+ <source>Shelved</source>
23
+ <target>Hyllytetty</target>
24
+ </trans-unit>
25
+ <trans-unit id="s2a2488656f97b746">
26
+ <source>No shelved alerts</source>
27
+ <target>Ei hyllytettyjä hälytyksiä</target>
28
+ </trans-unit>
29
+ <trans-unit id="sf59d9197d2e50c93">
30
+ <source>Blocked</source>
31
+ <target>Estetty</target>
32
+ </trans-unit>
33
+ <trans-unit id="s61a9ee872da3a0cd">
34
+ <source>No blocked alerts</source>
35
+ <target>Ei estettyjä hälytyksiä</target>
36
+ </trans-unit>
37
+ <trans-unit id="s16fccc311f4779f6">
38
+ <source>Rectified</source>
39
+ <target>Korjattu</target>
40
+ </trans-unit>
41
+ <trans-unit id="seb27af82aef6a03e">
42
+ <source>No rectified alerts</source>
43
+ <target>Ei korjattuja hälytyksiä</target>
44
+ </trans-unit>
45
+ <trans-unit id="sfa32c219a0764262">
46
+ <source>ACK</source>
47
+ <target>VAHVISTA</target>
48
+ </trans-unit>
49
+ <trans-unit id="s5ba9818f6a39054c">
50
+ <source>Go to the 'Alert list' for more details or to manage existing alerts.</source>
51
+ <target>Siirry 'Hälytyslistaan' saadaksesi lisätietoja tai hallitaksesi olemassa olevia hälytyksiä.</target>
52
+ </trans-unit>
53
+ <trans-unit id="s3cd891731e99f7e6">
54
+ <source>Active alerts</source>
55
+ <target>Aktiiviset hälytykset</target>
56
+ </trans-unit>
57
+ <trans-unit id="sa6ef04345891fb38">
58
+ <source>ACK visible</source>
59
+ <target>Vahvistus näkyvissä</target>
60
+ </trans-unit>
61
+ <trans-unit id="s68395a4c26a9e8ac">
62
+ <source>Silence</source>
63
+ <target>Hiljennä</target>
64
+ </trans-unit>
65
+ <trans-unit id="s88d1c1e15ca1aade">
66
+ <source>Alerts</source>
67
+ <target>Hälytykset</target>
68
+ </trans-unit>
69
+ <trans-unit id="s8119af112f965c78">
70
+ <source>Brilliance</source>
71
+ <target>Kirkkaus</target>
72
+ </trans-unit>
73
+ <trans-unit id="s3cf89cb47fdde7e9">
74
+ <source>Link</source>
75
+ <target>Linkki</target>
76
+ </trans-unit>
77
+ <trans-unit id="s0f3699a7bd401f61">
78
+ <source>Night</source>
79
+ <target>Yö</target>
80
+ </trans-unit>
81
+ <trans-unit id="s47278872f6826da8">
82
+ <source>Dusk</source>
83
+ <target>Hämärä</target>
84
+ </trans-unit>
85
+ <trans-unit id="se0955919920ee87d">
86
+ <source>Day</source>
87
+ <target>Päivä</target>
88
+ </trans-unit>
89
+ <trans-unit id="s9e34794bcfdc6665">
90
+ <source>Bright</source>
91
+ <target>Kirkas</target>
92
+ </trans-unit>
93
+ <trans-unit id="s33e301ba1f4a6864">
94
+ <source>Screen Control</source>
95
+ <target>Näytön hallinta</target>
96
+ </trans-unit>
97
+ <trans-unit id="s6686fcc6d2c8f0bd">
98
+ <source>Note</source>
99
+ <target>Huomautus</target>
100
+ </trans-unit>
101
+ <trans-unit id="sfbc33dd48f23752c">
102
+ <source>Tag ID</source>
103
+ <target>Tunnistetunnus</target>
104
+ </trans-unit>
105
+ <trans-unit id="s079a052719914d71">
106
+ <source>Category</source>
107
+ <target>Kategoria</target>
108
+ </trans-unit>
109
+ <trans-unit id="sa2b9faa7ad068cfc">
110
+ <source>Activated</source>
111
+ <target>Aktivoitu</target>
112
+ </trans-unit>
113
+ <trans-unit id="s35aab6bf5dda3be0">
114
+ <source>Alert timer</source>
115
+ <target>Hälytysajastin</target>
116
+ </trans-unit>
117
+ <trans-unit id="sdc7335a13d9e03f5">
118
+ <source>Acknowledged</source>
119
+ <target>Vahvistettu</target>
120
+ </trans-unit>
121
+ <trans-unit id="s93c7817bb872836a">
122
+ <source>Acknowledged by</source>
123
+ <target>Vahvistanut</target>
124
+ </trans-unit>
125
+ <trans-unit id="sf2de3605b3655264">
126
+ <source>Shelfing timer</source>
127
+ <target>Hyllytysajastin</target>
128
+ </trans-unit>
129
+ <trans-unit id="s097d821eb8e9069f">
130
+ <source>Shelved by</source>
131
+ <target>Hyllyttänyt</target>
132
+ </trans-unit>
133
+ <trans-unit id="sa711a6fcc9552dbf">
134
+ <source>Readout</source>
135
+ <target>Lukeminen</target>
136
+ </trans-unit>
137
+ </body>
138
+ </file>
139
+ </xliff>
package/dist/NotoSans.ttf DELETED
Binary file
package/dist/oicl.svg DELETED
@@ -1,4 +0,0 @@
1
- <svg width="224" height="224" viewBox="0 0 224 224" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M116.701 116.923C98.3078 176.761 155.93 202.404 191.346 183.693C190.913 184.142 190.474 184.588 190.031 185.032C150.197 224.865 85.6145 224.865 45.781 185.032C28.5699 167.819 30.2918 140.07 44.61 121.585C51.682 112.454 61.6691 105.859 73.599 104.095C85.5004 102.336 99.8051 105.317 115.64 116.203C115.994 116.446 116.348 116.686 116.701 116.923Z" fill="rgb(83, 83, 83)" fill-opacity="0.7"/>
3
- <path d="M45.7814 40.7818C85.6148 0.948366 150.198 0.948374 190.031 40.7819C209.923 60.674 207.905 88.397 193.203 106.026C185.877 114.811 175.448 121.005 163.062 122.417C150.694 123.827 136.018 120.504 120.172 109.611C103.007 97.8095 86.699 94.0715 72.4292 96.1814C58.188 98.287 46.4459 106.15 38.2856 116.686C29.7652 127.686 24.9738 141.908 25.3962 155.936C7.84433 118.193 14.6394 71.9238 45.7814 40.7818Z" fill="rgb(83, 83, 83)"/>
4
- </svg>