@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.
- package/README.md +0 -14
- package/dist/Epigraph/epigraph.js +20 -84
- package/dist/EpigraphLibs/EpigraphAnalytics/epigraphAnalytics.js +69 -0
- package/dist/EpigraphLibs/EpigraphAnalytics/types/index.d.ts +7 -0
- package/dist/EpigraphLibs/{epigraphLogger.js → EpigraphLogger/epigraphLogger.js} +19 -19
- package/dist/EpigraphLibs/{epigraphNexusApi.js → EpigraphNexusApi/epigraphNexusApi.js} +1 -1
- package/dist/EpigraphLibs/EpigraphQrCodeGenerator/epigraphQrCodeGenerator.js +69 -0
- package/dist/EpigraphLibs/EpigraphUnitsConverter/epigraphUnitsConverter.js +67 -0
- package/dist/lib/Epigraph/constants/enums.js +4 -0
- package/dist/lib/Epigraph/epigraphBaseSolution.js +70 -0
- package/dist/lib/EpigraphLibs/EpigraphAnalytics/consent-plugins/consent-plugin-names.js +4 -0
- package/dist/lib/EpigraphLibs/EpigraphAnalytics/consent-plugins/one-trust-consent-plugin.js +29 -0
- package/dist/lib/EpigraphLibs/EpigraphAnalytics/generics/node.js +22 -0
- package/dist/lib/EpigraphLibs/EpigraphAnalytics/generics/queue.js +23 -0
- package/dist/lib/EpigraphLibs/EpigraphAnalytics/generics/single-linked-list.js +30 -0
- package/dist/lib/EpigraphLibs/EpigraphAnalytics/plugins/ga3-analytics-plugin.js +87 -0
- package/dist/lib/EpigraphLibs/EpigraphAnalytics/plugins/ga4-analytics-plugin.js +124 -0
- package/dist/lib/EpigraphLibs/EpigraphAnalytics/plugins/nexus-analytics-plugin.js +45 -0
- package/dist/lib/EpigraphLibs/EpigraphUnitsConverter/conversions.js +26 -0
- package/dist/lib/EpigraphLibs/EpigraphUnitsConverter/enums.js +5 -0
- package/dist/node_modules/lit-html/async-directive.js +67 -0
- package/dist/node_modules/lit-html/directive-helpers.js +10 -0
- package/dist/node_modules/lit-html/directive.js +27 -0
- package/dist/node_modules/lit-html/directives/ref.js +40 -0
- package/dist/node_modules/lit-html/lit-html.js +225 -0
- package/dist/vite-env.d.ts +1 -0
- package/package.json +41 -74
- package/dist/EpigraphLibs/epigraphAnalytics.js +0 -399
- package/dist/EpigraphLibs/epigraphQrCodeGenerator.js +0 -938
- package/dist/EpigraphLibs/epigraphUnitsConverter.js +0 -88
- package/dist/ThirdPartyLibs/modelViewer.d.ts +0 -2
- package/dist/ThirdPartyLibs/modelViewer.js +0 -8608
- package/dist/ThirdPartyLibs/three-gltf-extensions/exporters/KHR_materials_variants/KHR_materials_variants_exporter.d.ts +0 -9
- package/dist/ThirdPartyLibs/three-gltf-extensions/loaders/KHR_materials_variants/KHR_materials_variants.d.ts +0 -6
- package/dist/ThirdPartyLibs/threejs.d.ts +0 -13
- package/dist/ThirdPartyLibs/threejs.js +0 -800
- package/dist/chunks/VerticalBlurShader.B0rdEBFu.js +0 -26381
- /package/dist/EpigraphLibs/{epigraphResultFactory.js → EpigraphResultFactory/epigraphResultFactory.js} +0 -0
- /package/dist/EpigraphLibs/{epigraphUrlProcessor.js → EpigraphUrlProcessor/epigraphUrlProcessor.js} +0 -0
|
@@ -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';
|