@openremote/or-survey 1.2.0-snapshot.20240512162641 → 1.2.0-snapshot.20240819101332

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,53 @@
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
+ * @license
28
+ * Lodash <https://lodash.com/>
29
+ * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
30
+ * Released under MIT license <https://lodash.com/license>
31
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
32
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
33
+ */
34
+
35
+ /**
36
+ * [js-sha256]{@link https://github.com/emn178/js-sha256}
37
+ *
38
+ * @version 0.11.0
39
+ * @author Chen, Yi-Cyuan [emn178@gmail.com]
40
+ * @copyright Chen, Yi-Cyuan 2014-2024
41
+ * @license MIT
42
+ */
43
+
44
+ /**!
45
+ * url-search-params-polyfill
46
+ *
47
+ * @author Jerry Bendy (https://github.com/jerrybendy)
48
+ * @licence MIT
49
+ */
50
+
51
+ //! moment.js
52
+
53
+ //! 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.20240512162641",
3
+ "version": "1.2.0-snapshot.20240819101332",
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.20240512162641",
20
- "@openremote/model": "1.2.0-snapshot.20240512162641",
21
- "@openremote/or-translate": "1.2.0-snapshot.20240512162641",
19
+ "@openremote/core": "1.2.0-snapshot.20240819101332",
20
+ "@openremote/model": "1.2.0-snapshot.20240819101332",
21
+ "@openremote/or-translate": "1.2.0-snapshot.20240819101332",
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.20240512162641"
28
+ "@openremote/util": "1.2.0-snapshot.20240819101332"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"