vim-web 0.3.44-dev.50 → 0.3.44-dev.52

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.
@@ -5,6 +5,8 @@ export * as Icons from './icons';
5
5
  export * as Settings from './settings';
6
6
  export * as Webgl from './webgl';
7
7
  export * as Ultra from './ultra';
8
+ export * as Errors from './errors';
9
+ export * as Urls from './urls';
8
10
  export * from './container';
9
11
  export type * from './helpers';
10
12
  export type * from './panels';
@@ -29211,7 +29211,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
29211
29211
  constructor(manager) {
29212
29212
  super(manager);
29213
29213
  }
29214
- load(urls, onLoad, onProgress, onError) {
29214
+ load(urls2, onLoad, onProgress, onError) {
29215
29215
  const texture = new CubeTexture();
29216
29216
  texture.colorSpace = SRGBColorSpace;
29217
29217
  const loader = new ImageLoader(this.manager);
@@ -29219,7 +29219,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
29219
29219
  loader.setPath(this.path);
29220
29220
  let loaded = 0;
29221
29221
  function loadTexture(i2) {
29222
- loader.load(urls[i2], function(image) {
29222
+ loader.load(urls2[i2], function(image) {
29223
29223
  texture.images[i2] = image;
29224
29224
  loaded++;
29225
29225
  if (loaded === 6) {
@@ -29228,7 +29228,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
29228
29228
  }
29229
29229
  }, void 0, onError);
29230
29230
  }
29231
- for (let i2 = 0; i2 < urls.length; ++i2) {
29231
+ for (let i2 = 0; i2 < urls2.length; ++i2) {
29232
29232
  loadTexture(i2);
29233
29233
  }
29234
29234
  return texture;
@@ -57147,7 +57147,7 @@ void main() {
57147
57147
  }
57148
57148
  return result;
57149
57149
  }
57150
- const index$7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
57150
+ const index$8 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
57151
57151
  __proto__: null,
57152
57152
  IProgressLogs: distExports$2.IProgressLogs,
57153
57153
  Layers,
@@ -61343,7 +61343,7 @@ Averrage Date/Second ${avgDataRatePS} kb
61343
61343
  window.onbeforeunload = null;
61344
61344
  }
61345
61345
  };
61346
- const index$6 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
61346
+ const index$7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
61347
61347
  __proto__: null,
61348
61348
  INVALID_HANDLE,
61349
61349
  InputMode,
@@ -61357,12 +61357,12 @@ Averrage Date/Second ${avgDataRatePS} kb
61357
61357
  VimLoadingStatus,
61358
61358
  materialHandles
61359
61359
  }, Symbol.toStringTag, { value: "Module" }));
61360
- const index$5 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
61360
+ const index$6 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
61361
61361
  __proto__: null,
61362
61362
  InputHandler,
61363
61363
  PointerMode: PointerMode$1,
61364
- Ultra: index$6,
61365
- Webgl: index$7
61364
+ Ultra: index$7,
61365
+ Webgl: index$8
61366
61366
  }, Symbol.toStringTag, { value: "Module" }));
61367
61367
  const sectionSelection = "controlBar.sectionSelection";
61368
61368
  const sectionCamera = "controlBar.sectionCamera";
@@ -61472,7 +61472,7 @@ Averrage Date/Second ${avgDataRatePS} kb
61472
61472
  sectionDefaultStyle,
61473
61473
  sectionNoPadStyle
61474
61474
  }, Symbol.toStringTag, { value: "Module" }));
61475
- const index$4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
61475
+ const index$5 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
61476
61476
  __proto__: null,
61477
61477
  Ids: controlBarIds,
61478
61478
  Style: style
@@ -63635,7 +63635,7 @@ Averrage Date/Second ${avgDataRatePS} kb
63635
63635
  function isFalse(value) {
63636
63636
  return value === false || value === "AlwaysFalse";
63637
63637
  }
63638
- const index$3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
63638
+ const index$4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
63639
63639
  __proto__: null,
63640
63640
  createSettings,
63641
63641
  getDefaultSettings,
@@ -74903,6 +74903,13 @@ Averrage Date/Second ${avgDataRatePS} kb
74903
74903
  }
74904
74904
  const support = "https://docs.vimaec.com";
74905
74905
  const supportUltra = "https://docs.vimaec.com/docs/vim-for-windows/configuring-vim-ultra";
74906
+ const supportControls = "https://docs.vimaec.com/docs/vim-cloud/webgl-navigation-and-controls-guide";
74907
+ const urls = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
74908
+ __proto__: null,
74909
+ support,
74910
+ supportControls,
74911
+ supportUltra
74912
+ }, Symbol.toStringTag, { value: "Module" }));
74906
74913
  function fileOpeningError(url) {
74907
74914
  return {
74908
74915
  title: "File Opening Error",
@@ -75079,6 +75086,32 @@ Averrage Date/Second ${avgDataRatePS} kb
75079
75086
  ])
75080
75087
  ] });
75081
75088
  }
75089
+ const index$3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
75090
+ __proto__: null,
75091
+ bold,
75092
+ bullet,
75093
+ detailText,
75094
+ dotList,
75095
+ fileOpeningError,
75096
+ footer: footer$1,
75097
+ isFilePathOrUri,
75098
+ isLocalUrl,
75099
+ link,
75100
+ mainText,
75101
+ numList,
75102
+ serverCompatibilityError,
75103
+ serverConnectionError,
75104
+ serverFileDownloadingError,
75105
+ serverFileLoadingError,
75106
+ serverStreamError,
75107
+ subTitle,
75108
+ vcColorLink,
75109
+ vcColorPrimary,
75110
+ vcColorSecondary,
75111
+ vcLabel,
75112
+ vcLink,
75113
+ vcRoboto
75114
+ }, Symbol.toStringTag, { value: "Module" }));
75082
75115
  class ComponentLoader {
75083
75116
  constructor(viewer, modal) {
75084
75117
  __publicField(this, "_viewer");
@@ -76321,14 +76354,16 @@ Averrage Date/Second ${avgDataRatePS} kb
76321
76354
  }, Symbol.toStringTag, { value: "Module" }));
76322
76355
  const index = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
76323
76356
  __proto__: null,
76324
- ControlBar: index$4,
76357
+ ControlBar: index$5,
76358
+ Errors: index$3,
76325
76359
  Icons: icons,
76326
- Settings: index$3,
76360
+ Settings: index$4,
76327
76361
  Ultra: index$1,
76362
+ Urls: urls,
76328
76363
  Webgl: index$2,
76329
76364
  createContainer
76330
76365
  }, Symbol.toStringTag, { value: "Module" }));
76331
- exports.Core = index$5;
76366
+ exports.Core = index$6;
76332
76367
  exports.React = index;
76333
76368
  exports.THREE = three_module;
76334
76369
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });