@wix/fast-gallery 1.0.21 → 1.0.23
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/build/cjs/index.d.ts +4 -0
- package/build/cjs/schemas.d.ts +8 -0
- package/build/cjs/schemas.js +50 -0
- package/build/cjs/schemas.js.map +1 -0
- package/build/es/index.d.mts +4 -0
- package/build/es/schemas.d.mts +8 -0
- package/build/es/schemas.mjs +12 -0
- package/build/es/schemas.mjs.map +1 -0
- package/build/internal/cjs/index.d.ts +4 -0
- package/build/internal/cjs/schemas.d.ts +8 -0
- package/build/internal/cjs/schemas.js +50 -0
- package/build/internal/cjs/schemas.js.map +1 -0
- package/build/internal/es/index.d.mts +4 -0
- package/build/internal/es/schemas.d.mts +8 -0
- package/build/internal/es/schemas.mjs +12 -0
- package/build/internal/es/schemas.mjs.map +1 -0
- package/package.json +13 -7
- package/schemas/package.json +3 -0
package/build/cjs/index.d.ts
CHANGED
|
@@ -10,3 +10,7 @@ import '@wix/auto_sdk_fast-gallery_app/meta';
|
|
|
10
10
|
import '@wix/auto_sdk_fast-gallery_draft-items/meta';
|
|
11
11
|
import '@wix/auto_sdk_fast-gallery_galleries/meta';
|
|
12
12
|
import '@wix/auto_sdk_fast-gallery_items/meta';
|
|
13
|
+
import '@wix/auto_sdk_fast-gallery_app/schemas';
|
|
14
|
+
import '@wix/auto_sdk_fast-gallery_draft-items/schemas';
|
|
15
|
+
import '@wix/auto_sdk_fast-gallery_galleries/schemas';
|
|
16
|
+
import '@wix/auto_sdk_fast-gallery_items/schemas';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as schemas from '@wix/auto_sdk_fast-gallery_app/schemas';
|
|
2
|
+
export { schemas as app };
|
|
3
|
+
import * as schemas$1 from '@wix/auto_sdk_fast-gallery_draft-items/schemas';
|
|
4
|
+
export { schemas$1 as draftItems };
|
|
5
|
+
import * as schemas$2 from '@wix/auto_sdk_fast-gallery_galleries/schemas';
|
|
6
|
+
export { schemas$2 as galleries };
|
|
7
|
+
import * as schemas$3 from '@wix/auto_sdk_fast-gallery_items/schemas';
|
|
8
|
+
export { schemas$3 as items };
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// schemas.ts
|
|
31
|
+
var schemas_exports = {};
|
|
32
|
+
__export(schemas_exports, {
|
|
33
|
+
app: () => app,
|
|
34
|
+
draftItems: () => draftItems,
|
|
35
|
+
galleries: () => galleries,
|
|
36
|
+
items: () => items
|
|
37
|
+
});
|
|
38
|
+
module.exports = __toCommonJS(schemas_exports);
|
|
39
|
+
var app = __toESM(require("@wix/auto_sdk_fast-gallery_app/schemas"));
|
|
40
|
+
var draftItems = __toESM(require("@wix/auto_sdk_fast-gallery_draft-items/schemas"));
|
|
41
|
+
var galleries = __toESM(require("@wix/auto_sdk_fast-gallery_galleries/schemas"));
|
|
42
|
+
var items = __toESM(require("@wix/auto_sdk_fast-gallery_items/schemas"));
|
|
43
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
44
|
+
0 && (module.exports = {
|
|
45
|
+
app,
|
|
46
|
+
draftItems,
|
|
47
|
+
galleries,
|
|
48
|
+
items
|
|
49
|
+
});
|
|
50
|
+
//# sourceMappingURL=schemas.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../schemas.ts"],"sourcesContent":["export * as app from '@wix/auto_sdk_fast-gallery_app/schemas';\nexport * as draftItems from '@wix/auto_sdk_fast-gallery_draft-items/schemas';\nexport * as galleries from '@wix/auto_sdk_fast-gallery_galleries/schemas';\nexport * as items from '@wix/auto_sdk_fast-gallery_items/schemas';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAAqB;AACrB,iBAA4B;AAC5B,gBAA2B;AAC3B,YAAuB;","names":[]}
|
package/build/es/index.d.mts
CHANGED
|
@@ -10,3 +10,7 @@ import '@wix/auto_sdk_fast-gallery_app/meta';
|
|
|
10
10
|
import '@wix/auto_sdk_fast-gallery_draft-items/meta';
|
|
11
11
|
import '@wix/auto_sdk_fast-gallery_galleries/meta';
|
|
12
12
|
import '@wix/auto_sdk_fast-gallery_items/meta';
|
|
13
|
+
import '@wix/auto_sdk_fast-gallery_app/schemas';
|
|
14
|
+
import '@wix/auto_sdk_fast-gallery_draft-items/schemas';
|
|
15
|
+
import '@wix/auto_sdk_fast-gallery_galleries/schemas';
|
|
16
|
+
import '@wix/auto_sdk_fast-gallery_items/schemas';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as schemas from '@wix/auto_sdk_fast-gallery_app/schemas';
|
|
2
|
+
export { schemas as app };
|
|
3
|
+
import * as schemas$1 from '@wix/auto_sdk_fast-gallery_draft-items/schemas';
|
|
4
|
+
export { schemas$1 as draftItems };
|
|
5
|
+
import * as schemas$2 from '@wix/auto_sdk_fast-gallery_galleries/schemas';
|
|
6
|
+
export { schemas$2 as galleries };
|
|
7
|
+
import * as schemas$3 from '@wix/auto_sdk_fast-gallery_items/schemas';
|
|
8
|
+
export { schemas$3 as items };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// schemas.ts
|
|
2
|
+
import * as app from "@wix/auto_sdk_fast-gallery_app/schemas";
|
|
3
|
+
import * as draftItems from "@wix/auto_sdk_fast-gallery_draft-items/schemas";
|
|
4
|
+
import * as galleries from "@wix/auto_sdk_fast-gallery_galleries/schemas";
|
|
5
|
+
import * as items from "@wix/auto_sdk_fast-gallery_items/schemas";
|
|
6
|
+
export {
|
|
7
|
+
app,
|
|
8
|
+
draftItems,
|
|
9
|
+
galleries,
|
|
10
|
+
items
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=schemas.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../schemas.ts"],"sourcesContent":["export * as app from '@wix/auto_sdk_fast-gallery_app/schemas';\nexport * as draftItems from '@wix/auto_sdk_fast-gallery_draft-items/schemas';\nexport * as galleries from '@wix/auto_sdk_fast-gallery_galleries/schemas';\nexport * as items from '@wix/auto_sdk_fast-gallery_items/schemas';\n"],"mappings":";AAAA,YAAY,SAAS;AACrB,YAAY,gBAAgB;AAC5B,YAAY,eAAe;AAC3B,YAAY,WAAW;","names":[]}
|
|
@@ -10,3 +10,7 @@ import '@wix/auto_sdk_fast-gallery_app/meta';
|
|
|
10
10
|
import '@wix/auto_sdk_fast-gallery_draft-items/meta';
|
|
11
11
|
import '@wix/auto_sdk_fast-gallery_galleries/meta';
|
|
12
12
|
import '@wix/auto_sdk_fast-gallery_items/meta';
|
|
13
|
+
import '@wix/auto_sdk_fast-gallery_app/schemas';
|
|
14
|
+
import '@wix/auto_sdk_fast-gallery_draft-items/schemas';
|
|
15
|
+
import '@wix/auto_sdk_fast-gallery_galleries/schemas';
|
|
16
|
+
import '@wix/auto_sdk_fast-gallery_items/schemas';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as schemas from '@wix/auto_sdk_fast-gallery_app/schemas';
|
|
2
|
+
export { schemas as app };
|
|
3
|
+
import * as schemas$1 from '@wix/auto_sdk_fast-gallery_draft-items/schemas';
|
|
4
|
+
export { schemas$1 as draftItems };
|
|
5
|
+
import * as schemas$2 from '@wix/auto_sdk_fast-gallery_galleries/schemas';
|
|
6
|
+
export { schemas$2 as galleries };
|
|
7
|
+
import * as schemas$3 from '@wix/auto_sdk_fast-gallery_items/schemas';
|
|
8
|
+
export { schemas$3 as items };
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// schemas.ts
|
|
31
|
+
var schemas_exports = {};
|
|
32
|
+
__export(schemas_exports, {
|
|
33
|
+
app: () => app,
|
|
34
|
+
draftItems: () => draftItems,
|
|
35
|
+
galleries: () => galleries,
|
|
36
|
+
items: () => items
|
|
37
|
+
});
|
|
38
|
+
module.exports = __toCommonJS(schemas_exports);
|
|
39
|
+
var app = __toESM(require("@wix/auto_sdk_fast-gallery_app/schemas"));
|
|
40
|
+
var draftItems = __toESM(require("@wix/auto_sdk_fast-gallery_draft-items/schemas"));
|
|
41
|
+
var galleries = __toESM(require("@wix/auto_sdk_fast-gallery_galleries/schemas"));
|
|
42
|
+
var items = __toESM(require("@wix/auto_sdk_fast-gallery_items/schemas"));
|
|
43
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
44
|
+
0 && (module.exports = {
|
|
45
|
+
app,
|
|
46
|
+
draftItems,
|
|
47
|
+
galleries,
|
|
48
|
+
items
|
|
49
|
+
});
|
|
50
|
+
//# sourceMappingURL=schemas.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../schemas.ts"],"sourcesContent":["export * as app from '@wix/auto_sdk_fast-gallery_app/schemas';\nexport * as draftItems from '@wix/auto_sdk_fast-gallery_draft-items/schemas';\nexport * as galleries from '@wix/auto_sdk_fast-gallery_galleries/schemas';\nexport * as items from '@wix/auto_sdk_fast-gallery_items/schemas';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAAqB;AACrB,iBAA4B;AAC5B,gBAA2B;AAC3B,YAAuB;","names":[]}
|
|
@@ -10,3 +10,7 @@ import '@wix/auto_sdk_fast-gallery_app/meta';
|
|
|
10
10
|
import '@wix/auto_sdk_fast-gallery_draft-items/meta';
|
|
11
11
|
import '@wix/auto_sdk_fast-gallery_galleries/meta';
|
|
12
12
|
import '@wix/auto_sdk_fast-gallery_items/meta';
|
|
13
|
+
import '@wix/auto_sdk_fast-gallery_app/schemas';
|
|
14
|
+
import '@wix/auto_sdk_fast-gallery_draft-items/schemas';
|
|
15
|
+
import '@wix/auto_sdk_fast-gallery_galleries/schemas';
|
|
16
|
+
import '@wix/auto_sdk_fast-gallery_items/schemas';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as schemas from '@wix/auto_sdk_fast-gallery_app/schemas';
|
|
2
|
+
export { schemas as app };
|
|
3
|
+
import * as schemas$1 from '@wix/auto_sdk_fast-gallery_draft-items/schemas';
|
|
4
|
+
export { schemas$1 as draftItems };
|
|
5
|
+
import * as schemas$2 from '@wix/auto_sdk_fast-gallery_galleries/schemas';
|
|
6
|
+
export { schemas$2 as galleries };
|
|
7
|
+
import * as schemas$3 from '@wix/auto_sdk_fast-gallery_items/schemas';
|
|
8
|
+
export { schemas$3 as items };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// schemas.ts
|
|
2
|
+
import * as app from "@wix/auto_sdk_fast-gallery_app/schemas";
|
|
3
|
+
import * as draftItems from "@wix/auto_sdk_fast-gallery_draft-items/schemas";
|
|
4
|
+
import * as galleries from "@wix/auto_sdk_fast-gallery_galleries/schemas";
|
|
5
|
+
import * as items from "@wix/auto_sdk_fast-gallery_items/schemas";
|
|
6
|
+
export {
|
|
7
|
+
app,
|
|
8
|
+
draftItems,
|
|
9
|
+
galleries,
|
|
10
|
+
items
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=schemas.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../schemas.ts"],"sourcesContent":["export * as app from '@wix/auto_sdk_fast-gallery_app/schemas';\nexport * as draftItems from '@wix/auto_sdk_fast-gallery_draft-items/schemas';\nexport * as galleries from '@wix/auto_sdk_fast-gallery_galleries/schemas';\nexport * as items from '@wix/auto_sdk_fast-gallery_items/schemas';\n"],"mappings":";AAAA,YAAY,SAAS;AACrB,YAAY,gBAAgB;AAC5B,YAAY,eAAe;AAC3B,YAAY,WAAW;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/fast-gallery",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.23",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -25,18 +25,24 @@
|
|
|
25
25
|
"import": "./build/es/meta.mjs",
|
|
26
26
|
"require": "./build/cjs/meta.js",
|
|
27
27
|
"types": "./build/es/meta.d.mts"
|
|
28
|
+
},
|
|
29
|
+
"./schemas": {
|
|
30
|
+
"import": "./build/es/schemas.mjs",
|
|
31
|
+
"require": "./build/cjs/schemas.js",
|
|
32
|
+
"types": "./build/es/schemas.d.mts"
|
|
28
33
|
}
|
|
29
34
|
},
|
|
30
35
|
"files": [
|
|
31
36
|
"build",
|
|
32
37
|
"meta",
|
|
33
|
-
"service-plugins"
|
|
38
|
+
"service-plugins",
|
|
39
|
+
"schemas"
|
|
34
40
|
],
|
|
35
41
|
"dependencies": {
|
|
36
|
-
"@wix/auto_sdk_fast-gallery_app": "1.0.
|
|
37
|
-
"@wix/auto_sdk_fast-gallery_draft-items": "1.0.
|
|
38
|
-
"@wix/auto_sdk_fast-gallery_galleries": "1.0.
|
|
39
|
-
"@wix/auto_sdk_fast-gallery_items": "1.0.
|
|
42
|
+
"@wix/auto_sdk_fast-gallery_app": "1.0.15",
|
|
43
|
+
"@wix/auto_sdk_fast-gallery_draft-items": "1.0.20",
|
|
44
|
+
"@wix/auto_sdk_fast-gallery_galleries": "1.0.19",
|
|
45
|
+
"@wix/auto_sdk_fast-gallery_items": "1.0.20"
|
|
40
46
|
},
|
|
41
47
|
"devDependencies": {
|
|
42
48
|
"tsup": "^8.4.0",
|
|
@@ -57,5 +63,5 @@
|
|
|
57
63
|
"fqdn": ""
|
|
58
64
|
}
|
|
59
65
|
},
|
|
60
|
-
"falconPackageHash": "
|
|
66
|
+
"falconPackageHash": "fca9807c608c720a8c95ecfdc85743a530ce2bf24ac57cdfa32d96f5"
|
|
61
67
|
}
|