@openremote/or-survey 1.2.0-snapshot.20240512161818 → 1.2.0-snapshot.20240616202404

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.
@@ -0,0 +1,44 @@
1
+ /*!
2
+ * Platform.js v1.3.6
3
+ * Copyright 2014-2020 Benjamin Tan
4
+ * Copyright 2011-2013 John-David Dalton
5
+ * Available under MIT license
6
+ */
7
+
8
+ /**
9
+ * @license
10
+ * Copyright 2017 Google LLC
11
+ * SPDX-License-Identifier: BSD-3-Clause
12
+ */
13
+
14
+ /**
15
+ * @license
16
+ * Copyright 2019 Google LLC
17
+ * SPDX-License-Identifier: BSD-3-Clause
18
+ */
19
+
20
+ /**
21
+ * @license
22
+ * Copyright 2021 Google LLC
23
+ * SPDX-License-Identifier: BSD-3-Clause
24
+ */
25
+
26
+ /**
27
+ * [js-sha256]{@link https://github.com/emn178/js-sha256}
28
+ *
29
+ * @version 0.10.1
30
+ * @author Chen, Yi-Cyuan [emn178@gmail.com]
31
+ * @copyright Chen, Yi-Cyuan 2014-2023
32
+ * @license MIT
33
+ */
34
+
35
+ /**!
36
+ * url-search-params-polyfill
37
+ *
38
+ * @author Jerry Bendy (https://github.com/jerrybendy)
39
+ * @licence MIT
40
+ */
41
+
42
+ //! moment.js
43
+
44
+ //! moment.js locale configuration
package/lib/index.d.ts ADDED
@@ -0,0 +1,13 @@
1
+ import "@openremote/or-translate";
2
+ export interface OrComputeGridEventDetail {
3
+ }
4
+ export declare class OrComputeGridEvent extends CustomEvent<OrComputeGridEventDetail> {
5
+ static readonly NAME = "or-asset-viewer-compute-grid-event";
6
+ constructor();
7
+ }
8
+ export interface AnswerOption {
9
+ value: string;
10
+ }
11
+ export interface SurveyAnswers {
12
+ [key: string]: string | string[];
13
+ }
package/lib/style.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export declare const surveySectionStyle: import("lit-html").TemplateResult<1>;
2
+ export declare const surveyLayoutStyle: import("lit-html").TemplateResult<1>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openremote/or-survey",
3
- "version": "1.2.0-snapshot.20240512161818",
3
+ "version": "1.2.0-snapshot.20240616202404",
4
4
  "description": "Displays survey",
5
5
  "main": "dist/umd/index.bundle.js",
6
6
  "module": "lib/index.js",
@@ -11,21 +11,21 @@
11
11
  "types": "lib/index.d.ts",
12
12
  "scripts": {
13
13
  "test": "echo \"No tests\" && exit 0",
14
- "prepublishOnly": "npx webpack"
14
+ "prepack": "npx webpack"
15
15
  },
16
16
  "author": "OpenRemote",
17
17
  "license": "AGPL-3.0-or-later",
18
18
  "dependencies": {
19
- "@openremote/core": "1.2.0-snapshot.20240512161818",
20
- "@openremote/model": "1.2.0-snapshot.20240512161818",
21
- "@openremote/or-translate": "1.2.0-snapshot.20240512161818",
19
+ "@openremote/core": "1.2.0-snapshot.20240616202404",
20
+ "@openremote/model": "1.2.0-snapshot.20240616202404",
21
+ "@openremote/or-translate": "1.2.0-snapshot.20240616202404",
22
22
  "@types/lodash-es": "^4.17.5",
23
23
  "lit": "^2.0.2",
24
24
  "lodash-es": "^4.17.15",
25
25
  "moment": "2.29.4"
26
26
  },
27
27
  "devDependencies": {
28
- "@openremote/util": "1.2.0-snapshot.20240512161818"
28
+ "@openremote/util": "1.2.0-snapshot.20240616202404"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"