@chayns-components/gallery 5.0.0-beta.910 → 5.0.0-beta.911

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.
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),Object.defineProperty(exports,"Gallery",{enumerable:!0,get:function(){return r.default}}),Object.defineProperty(exports,"GalleryViewMode",{enumerable:!0,get:function(){return t.GalleryViewMode}});var e,r=(e=require("./components/Gallery"))&&e.__esModule?e:{default:e},t=require("./types/gallery");
@@ -0,0 +1 @@
1
+ {"version":3,"names":["Object","defineProperty","exports","value","enumerable","get","_Gallery","default","_gallery","GalleryViewMode","e","require","__esModule"],"sources":["lib/cjs/index.js"],"mappings":"AAAA,aAEAA,OAAOC,eAAeC,QAAS,aAAc,CAC3CC,OAAO,IAETH,OAAOC,eAAeC,QAAS,UAAW,CACxCE,YAAY,EACZC,IAAK,WACH,OAAOC,EAASC,OAClB,IAEFP,OAAOC,eAAeC,QAAS,kBAAmB,CAChDE,YAAY,EACZC,IAAK,WACH,OAAOG,EAASC,eAClB,IAEF,IAEgCC,EAF5BJ,GAE4BI,EAFMC,QAAQ,0BAEGD,EAAEE,WAAaF,EAAI,CAAEH,QAASG,GAD3EF,EAAWG,QAAQ","ignoreList":[]}
@@ -0,0 +1 @@
1
+ export{default as Gallery}from"./components/Gallery";export{GalleryViewMode}from"./types/gallery";
@@ -0,0 +1 @@
1
+ {"version":3,"names":["GalleryViewMode"],"sources":["lib/esm/index.js"],"mappings":"OAES,uBAA0B,8BAC1BA,oBAAuB","ignoreList":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chayns-components/gallery",
3
- "version": "5.0.0-beta.910",
3
+ "version": "5.0.0-beta.911",
4
4
  "description": "A set of beautiful React components for developing your own applications with chayns.",
5
5
  "sideEffects": false,
6
6
  "browserslist": [
@@ -39,7 +39,8 @@
39
39
  "url": "git+https://github.com/TobitSoftware/chayns-components.git"
40
40
  },
41
41
  "scripts": {
42
- "build": "npm run build:cjs && npm run build:esm && npm run build:types",
42
+ "build": "npm run build:cjs && npm run build:esm && npm run build:types && npm run minify",
43
+ "minify": "terser lib/cjs/index.js --compress --mangle --toplevel --source-map --output lib/cjs/index.min.js && terser lib/esm/index.js --compress --mangle --toplevel --source-map --output lib/esm/index.min.js",
43
44
  "build:types": "tsc",
44
45
  "build:cjs": "cross-env NODE_ENV=cjs babel src --out-dir lib/cjs --extensions=.ts,.tsx --source-maps --ignore=src/stories",
45
46
  "build:esm": "cross-env NODE_ENV=esm babel src --out-dir lib/esm --extensions=.ts,.tsx --source-maps --ignore=src/stories",
@@ -65,11 +66,13 @@
65
66
  "lerna": "^8.1.9",
66
67
  "react": "^18.3.1",
67
68
  "react-dom": "^18.3.1",
69
+ "source-map-explorer": "^2.5.3",
68
70
  "styled-components": "^6.1.13",
71
+ "terser": "^5.36.0",
69
72
  "typescript": "^5.7.2"
70
73
  },
71
74
  "dependencies": {
72
- "@chayns-components/core": "^5.0.0-beta.910",
75
+ "@chayns-components/core": "^5.0.0-beta.911",
73
76
  "uuid": "^10.0.0"
74
77
  },
75
78
  "peerDependencies": {
@@ -82,5 +85,5 @@
82
85
  "publishConfig": {
83
86
  "access": "public"
84
87
  },
85
- "gitHead": "d6a4e89e6c158e965df68cc7e473b0b27a7b08ca"
88
+ "gitHead": "cbbad4cae26a078bf6ae2c4e7e52fe9a2edd8f94"
86
89
  }