@epigraph/epigraph-std-lib 4.0.0-alpha → 4.0.1-alpha

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 (39) hide show
  1. package/README.md +0 -14
  2. package/dist/Epigraph/epigraph.js +20 -84
  3. package/dist/EpigraphLibs/EpigraphAnalytics/epigraphAnalytics.js +69 -0
  4. package/dist/EpigraphLibs/EpigraphAnalytics/types/index.d.ts +7 -0
  5. package/dist/EpigraphLibs/{epigraphLogger.js → EpigraphLogger/epigraphLogger.js} +19 -19
  6. package/dist/EpigraphLibs/{epigraphNexusApi.js → EpigraphNexusApi/epigraphNexusApi.js} +1 -1
  7. package/dist/EpigraphLibs/EpigraphQrCodeGenerator/epigraphQrCodeGenerator.js +69 -0
  8. package/dist/EpigraphLibs/EpigraphUnitsConverter/epigraphUnitsConverter.js +67 -0
  9. package/dist/lib/Epigraph/constants/enums.js +4 -0
  10. package/dist/lib/Epigraph/epigraphBaseSolution.js +70 -0
  11. package/dist/lib/EpigraphLibs/EpigraphAnalytics/consent-plugins/consent-plugin-names.js +4 -0
  12. package/dist/lib/EpigraphLibs/EpigraphAnalytics/consent-plugins/one-trust-consent-plugin.js +29 -0
  13. package/dist/lib/EpigraphLibs/EpigraphAnalytics/generics/node.js +22 -0
  14. package/dist/lib/EpigraphLibs/EpigraphAnalytics/generics/queue.js +23 -0
  15. package/dist/lib/EpigraphLibs/EpigraphAnalytics/generics/single-linked-list.js +30 -0
  16. package/dist/lib/EpigraphLibs/EpigraphAnalytics/plugins/ga3-analytics-plugin.js +87 -0
  17. package/dist/lib/EpigraphLibs/EpigraphAnalytics/plugins/ga4-analytics-plugin.js +124 -0
  18. package/dist/lib/EpigraphLibs/EpigraphAnalytics/plugins/nexus-analytics-plugin.js +45 -0
  19. package/dist/lib/EpigraphLibs/EpigraphUnitsConverter/conversions.js +26 -0
  20. package/dist/lib/EpigraphLibs/EpigraphUnitsConverter/enums.js +5 -0
  21. package/dist/node_modules/lit-html/async-directive.js +67 -0
  22. package/dist/node_modules/lit-html/directive-helpers.js +10 -0
  23. package/dist/node_modules/lit-html/directive.js +27 -0
  24. package/dist/node_modules/lit-html/directives/ref.js +40 -0
  25. package/dist/node_modules/lit-html/lit-html.js +225 -0
  26. package/dist/vite-env.d.ts +1 -0
  27. package/package.json +41 -74
  28. package/dist/EpigraphLibs/epigraphAnalytics.js +0 -399
  29. package/dist/EpigraphLibs/epigraphQrCodeGenerator.js +0 -938
  30. package/dist/EpigraphLibs/epigraphUnitsConverter.js +0 -88
  31. package/dist/ThirdPartyLibs/modelViewer.d.ts +0 -2
  32. package/dist/ThirdPartyLibs/modelViewer.js +0 -8608
  33. package/dist/ThirdPartyLibs/three-gltf-extensions/exporters/KHR_materials_variants/KHR_materials_variants_exporter.d.ts +0 -9
  34. package/dist/ThirdPartyLibs/three-gltf-extensions/loaders/KHR_materials_variants/KHR_materials_variants.d.ts +0 -6
  35. package/dist/ThirdPartyLibs/threejs.d.ts +0 -13
  36. package/dist/ThirdPartyLibs/threejs.js +0 -800
  37. package/dist/chunks/VerticalBlurShader.B0rdEBFu.js +0 -26381
  38. /package/dist/EpigraphLibs/{epigraphResultFactory.js → EpigraphResultFactory/epigraphResultFactory.js} +0 -0
  39. /package/dist/EpigraphLibs/{epigraphUrlProcessor.js → EpigraphUrlProcessor/epigraphUrlProcessor.js} +0 -0
@@ -1,9 +0,0 @@
1
- export default class GLTFExporterMaterialsVariantsExtension {
2
- constructor(writer: any);
3
- writer: any;
4
- name: string;
5
- variantNames: any[];
6
- beforeParse(objects: any): void;
7
- writeMesh(mesh: any, meshDef: any): void;
8
- afterParse(input: any): void;
9
- }
@@ -1,6 +0,0 @@
1
- export default class GLTFMaterialsVariantsExtension {
2
- constructor(parser: any);
3
- parser: any;
4
- name: string;
5
- afterRoot(gltf: any): any;
6
- }
@@ -1,13 +0,0 @@
1
- import { default as WebGL } from 'three/addons/capabilities/WebGL.js';
2
- export * from 'three';
3
- export { GLTFLoader, DRACOLoader, GLTFExporter, USDZExporter, EffectComposer, HorizontalBlurShader, VerticalBlurShader, RGBELoader } from 'three/examples/jsm/Addons.js';
4
- export * from 'three';
5
- export { WebGL };
6
- /**
7
- * TODO: Special case for exports.
8
- * Whenever this library needs to be updated. Run "npm run update-three-gltf-extensions" and if nothing has internally changed within the library,
9
- * everything should update automatically.
10
- */
11
- export * as GLTFMaterialsVariantsExtension from './three-gltf-extensions/loaders/KHR_materials_variants/KHR_materials_variants';
12
- export * as GLTFExporterMaterialsVariantsExtension from './three-gltf-extensions/exporters/KHR_materials_variants/KHR_materials_variants_exporter';
13
- export type { GLTF, GLTFLoaderPlugin } from 'three/examples/jsm/Addons.js';