udp-react-stencil-component-library 25.18.3-beta.16 → 25.18.3-beta.18

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.
@@ -11,8 +11,12 @@ type FileUploadEvents = {
11
11
  toString(): string;
12
12
  valueOf(): string;
13
13
  }>>;
14
+ onMetadataEmit: EventName<CustomEvent<{
15
+ key: string;
16
+ value: any;
17
+ } | null>>;
14
18
  };
15
19
  declare const FileUpload$1: StencilReactComponent<FileUpload, FileUploadEvents>;
16
20
  //#endregion
17
21
  export { FileUploadEvents as n, FileUpload$1 as t };
18
- //# sourceMappingURL=file-upload-ylkvtJYi.d.mts.map
22
+ //# sourceMappingURL=file-upload-BmIpsDMR.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file-upload-BmIpsDMR.d.mts","names":[],"sources":["../lib/file-upload.ts"],"sourcesContent":[],"mappings":";;;;;;AAgBwB,KADZ,gBAAA,GACY;EAAV,QAAA,EAAA,SAAA,CAAU,qBAAV,CAAA;IAMgB,KAAA,EAAA,MAAA;IAAV,KAAA,EAJL,IAIK,EAAA;IAAS,QAAA,EAAA,EAAA,MAAA;IAGhB,OAAA,EAAA,EAUX,MAAA;EAV6C,CAAA,CAAA,CAAA;EAAmB,cAAA,EAH9C,SAG8C,CAHpC,WAGoC,CAAA;IAAzC,GAAA,EAAA,MAAA;IAAqB,KAAA,EAAA,GAAA;;;cAAjC,cAAY,sBAAsB,YAAmB"}
@@ -7,10 +7,13 @@ const FileUpload$1 = /* @__PURE__ */ createComponent({
7
7
  tagName: "file-upload",
8
8
  elementClass: FileUpload,
9
9
  react: React,
10
- events: { onChange: "change" },
10
+ events: {
11
+ onChange: "change",
12
+ onMetadataEmit: "metadataEmit"
13
+ },
11
14
  defineCustomElement
12
15
  });
13
16
 
14
17
  //#endregion
15
18
  export { FileUpload$1 as t };
16
- //# sourceMappingURL=file-upload-DBREwacY.mjs.map
19
+ //# sourceMappingURL=file-upload-CERl3U-4.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"file-upload-DBREwacY.mjs","names":["FileUpload: StencilReactComponent<FileUploadElement, FileUploadEvents>","FileUploadElement","defineFileUpload"],"sources":["../lib/file-upload.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport React from 'react';\nimport { type FileUploadCustomEvent } from \"udp-stencil-component-library\";\nimport { FileUpload as FileUploadElement, defineCustomElement as defineFileUpload } from \"udp-stencil-component-library/dist/components/file-upload.js\";\n\nexport type FileUploadEvents = {\n onChange: EventName<FileUploadCustomEvent<{\n value: string;\n files: File[];\n toString(): string;\n valueOf(): string;\n }>>\n};\n\nexport const FileUpload: StencilReactComponent<FileUploadElement, FileUploadEvents> = /*@__PURE__*/ createComponent<FileUploadElement, FileUploadEvents>({\n tagName: 'file-upload',\n elementClass: FileUploadElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: { onChange: 'change' } as FileUploadEvents,\n defineCustomElement: defineFileUpload\n});\n"],"mappings":";;;;;AAwBA,MAAaA,eAAuF,gCAAqD;CACrJ,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ,EAAE,UAAU,UAAU;CACTC;CACxB,CAAC"}
1
+ {"version":3,"file":"file-upload-CERl3U-4.mjs","names":["FileUpload: StencilReactComponent<FileUploadElement, FileUploadEvents>","FileUploadElement","defineFileUpload"],"sources":["../lib/file-upload.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport React from 'react';\nimport { type FileUploadCustomEvent } from \"udp-stencil-component-library\";\nimport { FileUpload as FileUploadElement, defineCustomElement as defineFileUpload } from \"udp-stencil-component-library/dist/components/file-upload.js\";\n\nexport type FileUploadEvents = {\n onChange: EventName<FileUploadCustomEvent<{\n value: string;\n files: File[];\n toString(): string;\n valueOf(): string;\n }>>,\n onMetadataEmit: EventName<CustomEvent<{ key: string; value: any } | null>>\n};\n\nexport const FileUpload: StencilReactComponent<FileUploadElement, FileUploadEvents> = /*@__PURE__*/ createComponent<FileUploadElement, FileUploadEvents>({\n tagName: 'file-upload',\n elementClass: FileUploadElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: {\n onChange: 'change',\n onMetadataEmit: 'metadataEmit'\n } as FileUploadEvents,\n defineCustomElement: defineFileUpload\n});\n"],"mappings":";;;;;AAyBA,MAAaA,eAAuF,gCAAqD;CACrJ,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ;EACJ,UAAU;EACV,gBAAgB;EACnB;CACoBC;CACxB,CAAC"}
@@ -7,10 +7,13 @@ const ImageUpload$1 = /* @__PURE__ */ createComponent({
7
7
  tagName: "image-upload",
8
8
  elementClass: ImageUpload,
9
9
  react: React,
10
- events: { onChange: "change" },
10
+ events: {
11
+ onChange: "change",
12
+ onMetadataEmit: "metadataEmit"
13
+ },
11
14
  defineCustomElement
12
15
  });
13
16
 
14
17
  //#endregion
15
18
  export { ImageUpload$1 as t };
16
- //# sourceMappingURL=image-upload-CoNTHgxu.mjs.map
19
+ //# sourceMappingURL=image-upload-C4-C7bev.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"image-upload-C4-C7bev.mjs","names":["ImageUpload: StencilReactComponent<ImageUploadElement, ImageUploadEvents>","ImageUploadElement","defineImageUpload"],"sources":["../lib/image-upload.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport React from 'react';\nimport { type ImageUploadCustomEvent } from \"udp-stencil-component-library\";\nimport { ImageUpload as ImageUploadElement, defineCustomElement as defineImageUpload } from \"udp-stencil-component-library/dist/components/image-upload.js\";\n\nexport type ImageUploadEvents = {\n onChange: EventName<ImageUploadCustomEvent<{ value: string; files: File[] }>>,\n onMetadataEmit: EventName<CustomEvent<{ key: string; value: any } | null>>\n};\n\nexport const ImageUpload: StencilReactComponent<ImageUploadElement, ImageUploadEvents> = /*@__PURE__*/ createComponent<ImageUploadElement, ImageUploadEvents>({\n tagName: 'image-upload',\n elementClass: ImageUploadElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: {\n onChange: 'change',\n onMetadataEmit: 'metadataEmit'\n } as ImageUploadEvents,\n defineCustomElement: defineImageUpload\n});\n"],"mappings":";;;;;AAoBA,MAAaA,gBAA0F,gCAAuD;CAC1J,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ;EACJ,UAAU;EACV,gBAAgB;EACnB;CACoBC;CACxB,CAAC"}
@@ -9,8 +9,12 @@ type ImageUploadEvents = {
9
9
  value: string;
10
10
  files: File[];
11
11
  }>>;
12
+ onMetadataEmit: EventName<CustomEvent<{
13
+ key: string;
14
+ value: any;
15
+ } | null>>;
12
16
  };
13
17
  declare const ImageUpload$1: StencilReactComponent<ImageUpload, ImageUploadEvents>;
14
18
  //#endregion
15
19
  export { ImageUploadEvents as n, ImageUpload$1 as t };
16
- //# sourceMappingURL=image-upload-CQshTW-t.d.mts.map
20
+ //# sourceMappingURL=image-upload-u1NLTyV7.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"image-upload-u1NLTyV7.d.mts","names":[],"sources":["../lib/image-upload.ts"],"sourcesContent":[],"mappings":";;;;;;AAgBwB,KADZ,iBAAA,GACY;EAAV,QAAA,EAAA,SAAA,CAAU,sBAAV,CAAA;IACgB,KAAA,EAAA,MAAA;IAAV,KAAA,EADmD,IACnD,EAAA;EAAS,CAAA,CAAA,CAAA;EAGhB,cAAA,EAHO,SAalB,CAb4B,WAa5B,CAAA;IAV8C,GAAA,EAAA,MAAA;IAAoB,KAAA,EAAA,GAAA;EAA1C,CAAA,GAAA,IAAA,CAAA,CAAA;CAAqB;cAAlC,eAAa,sBAAsB,aAAoB"}
@@ -1,2 +1,2 @@
1
- import { n as FileUploadEvents, t as FileUpload } from "../file-upload-ylkvtJYi.mjs";
1
+ import { n as FileUploadEvents, t as FileUpload } from "../file-upload-BmIpsDMR.mjs";
2
2
  export { FileUpload, FileUploadEvents };
@@ -2,6 +2,6 @@
2
2
 
3
3
 
4
4
  import "udp-stencil-component-library/dist/stencil-library/stencil-library.css";
5
- import { t as FileUpload } from "../file-upload-DBREwacY.mjs";
5
+ import { t as FileUpload } from "../file-upload-CERl3U-4.mjs";
6
6
 
7
7
  export { FileUpload };
@@ -1,2 +1,2 @@
1
- import { n as ImageUploadEvents, t as ImageUpload } from "../image-upload-CQshTW-t.mjs";
1
+ import { n as ImageUploadEvents, t as ImageUpload } from "../image-upload-u1NLTyV7.mjs";
2
2
  export { ImageUpload, ImageUploadEvents };
@@ -2,6 +2,6 @@
2
2
 
3
3
 
4
4
  import "udp-stencil-component-library/dist/stencil-library/stencil-library.css";
5
- import { t as ImageUpload } from "../image-upload-CoNTHgxu.mjs";
5
+ import { t as ImageUpload } from "../image-upload-C4-C7bev.mjs";
6
6
 
7
7
  export { ImageUpload };
@@ -22,7 +22,7 @@ import { t as EntityMaintenanceGrid } from "../entity-maintenance-grid-Cqy-ST6q.
22
22
  import { t as FeatureDetailsCard } from "../feature-details-card-ZU6cTij5.mjs";
23
23
  import { t as FeatureDetailsPopup } from "../feature-details-popup-BHnMIiXG.mjs";
24
24
  import { t as FileUploadRenderer } from "../file-upload-renderer-Di9hQxnW.mjs";
25
- import { t as FileUpload } from "../file-upload-ylkvtJYi.mjs";
25
+ import { t as FileUpload } from "../file-upload-BmIpsDMR.mjs";
26
26
  import { t as FilterConditions } from "../filter-conditions-BPqPTpNA.mjs";
27
27
  import { t as FilterGroup } from "../filter-group-CxZQaKiH.mjs";
28
28
  import { t as FormMetadataDisplayRenderer } from "../form-metadata-display-renderer-DEPt3RlA.mjs";
@@ -32,7 +32,7 @@ import { t as GridHeader } from "../grid-header-BLGV5iiU.mjs";
32
32
  import { t as GridPrimaryBar } from "../grid-primary-bar-ZjYd7wtL.mjs";
33
33
  import { t as HintPanel } from "../hint-panel-DkgU-lx3.mjs";
34
34
  import { t as IconGrid } from "../icon-grid-BjwyHtXl.mjs";
35
- import { t as ImageUpload } from "../image-upload-CQshTW-t.mjs";
35
+ import { t as ImageUpload } from "../image-upload-u1NLTyV7.mjs";
36
36
  import { t as KpiList } from "../kpi-list-DDyyJAH9.mjs";
37
37
  import { t as ListOptionsRenderer } from "../list-options-renderer-meSL3dQK.mjs";
38
38
  import { t as LocationInput } from "../location-input-CyjmFcYh.mjs";
@@ -22,7 +22,7 @@ import { t as EntityMaintenanceGrid } from "../entity-maintenance-grid-nnJ_Gk_j.
22
22
  import { t as FeatureDetailsCard } from "../feature-details-card-lJ3t5pqn.mjs";
23
23
  import { t as FeatureDetailsPopup } from "../feature-details-popup-vzpzSduN.mjs";
24
24
  import { t as FileUploadRenderer } from "../file-upload-renderer-pGekiOl3.mjs";
25
- import { t as FileUpload } from "../file-upload-DBREwacY.mjs";
25
+ import { t as FileUpload } from "../file-upload-CERl3U-4.mjs";
26
26
  import { t as FilterConditions } from "../filter-conditions-B0TyPqGc.mjs";
27
27
  import { t as FilterGroup } from "../filter-group-BebZeIOE.mjs";
28
28
  import { t as FormMetadataDisplayRenderer } from "../form-metadata-display-renderer-Byup7tM2.mjs";
@@ -32,7 +32,7 @@ import { t as GridHeader } from "../grid-header-CBFsVaZB.mjs";
32
32
  import { t as GridPrimaryBar } from "../grid-primary-bar-CqecY3Lh.mjs";
33
33
  import { t as HintPanel } from "../hint-panel-Dau3WY88.mjs";
34
34
  import { t as IconGrid } from "../icon-grid-CvkB9nIY.mjs";
35
- import { t as ImageUpload } from "../image-upload-CoNTHgxu.mjs";
35
+ import { t as ImageUpload } from "../image-upload-C4-C7bev.mjs";
36
36
  import { t as KpiList } from "../kpi-list-BLWKX9Fc.mjs";
37
37
  import { t as ListOptionsRenderer } from "../list-options-renderer-DWuLLRwv.mjs";
38
38
  import { t as LocationInput } from "../location-input-pMWZLNIs.mjs";
@@ -22,7 +22,7 @@ import { t as EntityMaintenanceGrid } from "../entity-maintenance-grid-Cqy-ST6q.
22
22
  import { t as FeatureDetailsCard } from "../feature-details-card-ZU6cTij5.mjs";
23
23
  import { t as FeatureDetailsPopup } from "../feature-details-popup-BHnMIiXG.mjs";
24
24
  import { t as FileUploadRenderer } from "../file-upload-renderer-Di9hQxnW.mjs";
25
- import { t as FileUpload } from "../file-upload-ylkvtJYi.mjs";
25
+ import { t as FileUpload } from "../file-upload-BmIpsDMR.mjs";
26
26
  import { t as FilterConditions } from "../filter-conditions-BPqPTpNA.mjs";
27
27
  import { t as FilterGroup } from "../filter-group-CxZQaKiH.mjs";
28
28
  import { t as FormMetadataDisplayRenderer } from "../form-metadata-display-renderer-DEPt3RlA.mjs";
@@ -32,7 +32,7 @@ import { t as GridHeader } from "../grid-header-BLGV5iiU.mjs";
32
32
  import { t as GridPrimaryBar } from "../grid-primary-bar-ZjYd7wtL.mjs";
33
33
  import { t as HintPanel } from "../hint-panel-DkgU-lx3.mjs";
34
34
  import { t as IconGrid } from "../icon-grid-BjwyHtXl.mjs";
35
- import { t as ImageUpload } from "../image-upload-CQshTW-t.mjs";
35
+ import { t as ImageUpload } from "../image-upload-u1NLTyV7.mjs";
36
36
  import { t as KpiList } from "../kpi-list-DDyyJAH9.mjs";
37
37
  import { t as ListOptionsRenderer } from "../list-options-renderer-meSL3dQK.mjs";
38
38
  import { t as LocationInput } from "../location-input-CyjmFcYh.mjs";
@@ -22,7 +22,7 @@ import { t as EntityMaintenanceGrid } from "../entity-maintenance-grid-nnJ_Gk_j.
22
22
  import { t as FeatureDetailsCard } from "../feature-details-card-lJ3t5pqn.mjs";
23
23
  import { t as FeatureDetailsPopup } from "../feature-details-popup-vzpzSduN.mjs";
24
24
  import { t as FileUploadRenderer } from "../file-upload-renderer-pGekiOl3.mjs";
25
- import { t as FileUpload } from "../file-upload-DBREwacY.mjs";
25
+ import { t as FileUpload } from "../file-upload-CERl3U-4.mjs";
26
26
  import { t as FilterConditions } from "../filter-conditions-B0TyPqGc.mjs";
27
27
  import { t as FilterGroup } from "../filter-group-BebZeIOE.mjs";
28
28
  import { t as FormMetadataDisplayRenderer } from "../form-metadata-display-renderer-Byup7tM2.mjs";
@@ -32,7 +32,7 @@ import { t as GridHeader } from "../grid-header-CBFsVaZB.mjs";
32
32
  import { t as GridPrimaryBar } from "../grid-primary-bar-CqecY3Lh.mjs";
33
33
  import { t as HintPanel } from "../hint-panel-Dau3WY88.mjs";
34
34
  import { t as IconGrid } from "../icon-grid-CvkB9nIY.mjs";
35
- import { t as ImageUpload } from "../image-upload-CoNTHgxu.mjs";
35
+ import { t as ImageUpload } from "../image-upload-C4-C7bev.mjs";
36
36
  import { t as KpiList } from "../kpi-list-BLWKX9Fc.mjs";
37
37
  import { t as ListOptionsRenderer } from "../list-options-renderer-DWuLLRwv.mjs";
38
38
  import { t as LocationInput } from "../location-input-pMWZLNIs.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "udp-react-stencil-component-library",
3
- "version": "25.18.3-beta.16",
3
+ "version": "25.18.3-beta.18",
4
4
  "description": "Unity React Wrapped Stencil Components",
5
5
  "module": "dist/index.js",
6
6
  "source": "src/index.ts",
@@ -47,7 +47,7 @@
47
47
  "dependencies": {
48
48
  "@stencil/react-output-target": "^1.2.0",
49
49
  "react": "^18.2.0",
50
- "udp-stencil-component-library": "25.18.3-beta.16"
50
+ "udp-stencil-component-library": "25.18.3-beta.18"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/node": "^20.12.12",
@@ -1 +0,0 @@
1
- {"version":3,"file":"file-upload-ylkvtJYi.d.mts","names":[],"sources":["../lib/file-upload.ts"],"sourcesContent":[],"mappings":";;;;;;AAgBwB,KADZ,gBAAA,GACY;EAAV,QAAA,EAAA,SAAA,CAAU,qBAAV,CAAA;IAAS,KAAA,EAAA,MAAA;IAQV,KAAA,EANE,IAab,EAAA;IAP6C,QAAA,EAAA,EAAA,MAAA;IAAmB,OAAA,EAAA,EAAA,MAAA;EAAzC,CAAA,CAAA,CAAA;CAAqB;cAAjC,cAAY,sBAAsB,YAAmB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"image-upload-CQshTW-t.d.mts","names":[],"sources":["../lib/image-upload.ts"],"sourcesContent":[],"mappings":";;;;;;AAesD,KAA1C,iBAAA,GAA0C;EAAV,QAAA,EAAA,SAAA,CAAU,sBAAV,CAAA;IAAS,KAAA,EAAA,MAAA;IAExC,KAAA,EAFwF,IAExF,EAOX;EAP8C,CAAA,CAAA,CAAA;CAAoB;AAA1C,cAAb,aAAa,EAAA,qBAAA,CAAsB,WAAtB,EAA0C,iBAA1C,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"image-upload-CoNTHgxu.mjs","names":["ImageUpload: StencilReactComponent<ImageUploadElement, ImageUploadEvents>","ImageUploadElement","defineImageUpload"],"sources":["../lib/image-upload.ts"],"sourcesContent":["'use client';\n\n/**\n * This file was automatically generated by the Stencil React Output Target.\n * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\n/* eslint-disable */\n\nimport type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';\nimport { createComponent } from '@stencil/react-output-target/runtime';\nimport React from 'react';\nimport { type ImageUploadCustomEvent } from \"udp-stencil-component-library\";\nimport { ImageUpload as ImageUploadElement, defineCustomElement as defineImageUpload } from \"udp-stencil-component-library/dist/components/image-upload.js\";\n\nexport type ImageUploadEvents = { onChange: EventName<ImageUploadCustomEvent<{ value: string; files: File[] }>> };\n\nexport const ImageUpload: StencilReactComponent<ImageUploadElement, ImageUploadEvents> = /*@__PURE__*/ createComponent<ImageUploadElement, ImageUploadEvents>({\n tagName: 'image-upload',\n elementClass: ImageUploadElement,\n // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.\n react: React,\n events: { onChange: 'change' } as ImageUploadEvents,\n defineCustomElement: defineImageUpload\n});\n"],"mappings":";;;;;AAiBA,MAAaA,gBAA0F,gCAAuD;CAC1J,SAAS;CACT,cAAcC;CAEd,OAAO;CACP,QAAQ,EAAE,UAAU,UAAU;CACTC;CACxB,CAAC"}