@wbc-ui/core2 1.0.0-r02 → 1.0.0-r04

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="logo/wb-core.svg" alt="@wbc-ui/core2" width="220"/>
2
+ <img src="https://raw.githubusercontent.com/wbc-ui/core2/main/logo/wb-core.svg" alt="@wbc-ui/core2" width="220"/>
3
3
  </p>
4
4
 
5
5
  <p align="center">
@@ -10,7 +10,7 @@
10
10
  <p align="center">
11
11
  <a href="https://www.npmjs.com/package/@wbc-ui/core2"><img src="https://img.shields.io/npm/v/@wbc-ui/core2?color=1976D2" alt="npm"></a>
12
12
  <a href="https://www.npmjs.com/package/@wbc-ui/core2?activeTab=versions"><img src="https://img.shields.io/npm/dm/@wbc-ui/core2?color=1976D2" alt="downloads"></a>
13
- <a href="LICENSE"><img src="https://img.shields.io/npm/l/@wbc-ui/core2?color=blue" alt="license"></a>
13
+ <a href="https://github.com/wbc-ui/core2/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/@wbc-ui/core2?color=blue" alt="license"></a>
14
14
  <a href="https://vuejs.org"><img src="https://img.shields.io/badge/vue-2.7%2B-42b883" alt="vue"></a>
15
15
  </p>
16
16
 
@@ -22,7 +22,7 @@
22
22
  </p>
23
23
 
24
24
  <p align="center">
25
- <img src="docs/media/hero-input-output.svg"
25
+ <img src="https://raw.githubusercontent.com/wbc-ui/core2/main/docs/media/hero-input-output.svg"
26
26
  alt="@wbc-ui/core2 — write &lt;WBC :item='...'&gt;, render real Material UI"
27
27
  width="780"/>
28
28
  </p>
@@ -266,7 +266,7 @@ For a longer walkthrough with worked examples, see the documentation hub at [flo
266
266
  ## ⚡ The Engine Under the Hood
267
267
 
268
268
  <p align="center">
269
- <img src="docs/media/engine-flow.svg" alt="@wbc-ui/core2 rendering engine flow" width="780"/>
269
+ <img src="https://raw.githubusercontent.com/wbc-ui/core2/main/docs/media/engine-flow.svg" alt="@wbc-ui/core2 rendering engine flow" width="780"/>
270
270
  </p>
271
271
 
272
272
  <details>
@@ -308,7 +308,7 @@ flowchart TD
308
308
  ## 💎 Free vs Pro
309
309
 
310
310
  <p align="center">
311
- <img src="docs/media/tier-badges.svg" alt="Free vs Pro" width="480"/>
311
+ <img src="https://raw.githubusercontent.com/wbc-ui/core2/main/docs/media/tier-badges.svg" alt="Free vs Pro" width="480"/>
312
312
  </p>
313
313
 
314
314
  > *"Free users can **bind** states. Pro users can **command** them."*
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "package": "@wbc-ui/core2",
3
- "version": "1.0.0-r02",
3
+ "version": "1.0.0-r04",
4
4
  "tier": "free",
5
- "builtAt": "2026-05-20T05:45:43.691Z",
5
+ "builtAt": "2026-05-20T16:39:31.183Z",
6
6
  "commit": null,
7
7
  "node": "v24.15.0"
8
8
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wbc-ui/core2",
3
- "version": "1.0.0-r02",
4
- "description": "Advanced Dynamic UI Engine for Vue 2 \u2014 Part of the @wbc-ui ecosystem",
3
+ "version": "1.0.0-r04",
4
+ "description": "Advanced Dynamic UI Engine for Vue 2 Part of the @wbc-ui ecosystem",
5
5
  "author": "Wissem Boughamoura <wissemb11@gmail.com> (https://www.wi-bg.com)",
6
6
  "homepage": "https://wbc-ui.com",
7
7
  "license": "MIT",
@@ -12,50 +12,21 @@
12
12
  "bugs": {
13
13
  "url": "https://github.com/wbc-ui/core2/issues"
14
14
  },
15
- "scripts": {
16
- "build:dev": "vite build",
17
- "build:free": "cross-env WBC_PRO=false vite build",
18
- "build:pro": "cross-env WBC_PRO=true vite build",
19
- "build:full-embed:dev": "vite build --mode full-embed",
20
- "build:full-embed:free": "cross-env WBC_PRO=false vite build --mode full-embed",
21
- "build:full-embed:pro": "cross-env WBC_PRO=true vite build --mode full-embed",
22
- "build:all:dev": "npm run clean:dev && npm run build:dev && npm run build:full-embed:dev",
23
- "build:all:free": "npm run clean:free && npm run build:free && npm run build:full-embed:free",
24
- "build:all:pro": "npm run clean:pro && npm run build:pro && npm run build:full-embed:pro",
25
- "clean": "npm run clean:dev",
26
- "clean:dev": "rm -rf dist-dev",
27
- "clean:free": "rm -rf dist-free",
28
- "clean:pro": "rm -rf dist-pro",
29
- "clean:all": "npm run clean:dev && npm run clean:free && npm run clean:pro",
30
- "test": "vitest run",
31
- "build": "vite build",
32
- "build:full-embed": "vite build --mode full-embed",
33
- "build:all": "npm run build:dev && npm run build:free && npm run build:pro",
34
- "serve_vite": "vite",
35
- "serve_vite:free": "cross-env WBC_PRO=false vite",
36
- "serve_vite:pro": "cross-env WBC_PRO=true vite",
37
- "build:with-prettier": "vite build --mode with-prettier",
38
- "serve_vite:dev": "vite",
39
- "release": "node ../../../tools/pkg_cli/publish_lib.js",
40
- "prepublishOnly": "npm run clean:all && npm run build:all && npm test",
41
- "prepack": "npm run build:all && node tools/prepublish-clean.mjs --prepare",
42
- "postpack": "node tools/prepublish-clean.mjs --restore"
43
- },
44
- "main": "dist-free/core2.umd.js",
45
- "module": "dist-free/core2.es.js",
15
+ "main": "dist/core2.umd.js",
16
+ "module": "dist/core2.es.js",
46
17
  "exports": {
47
18
  ".": {
48
- "import": "./dist-free/core2.es.js",
49
- "require": "./dist-free/core2.umd.js"
19
+ "import": "./dist/core2.es.js",
20
+ "require": "./dist/core2.umd.js"
50
21
  },
51
22
  "./vite-plugin": "./vite-plugin.mjs",
52
23
  "./vite-plugin.js": "./vite-plugin.mjs",
53
24
  "./vite-plugin.mjs": "./vite-plugin.mjs",
54
25
  "./wbc.webpack.js": "./wbc.webpack.js",
55
- "./dist-free/*": "./dist-free/*"
26
+ "./dist/*": "./dist/*"
56
27
  },
57
28
  "files": [
58
- "dist-free",
29
+ "dist",
59
30
  "README.md",
60
31
  "LICENSE",
61
32
  "logo/",
@@ -105,13 +76,6 @@
105
76
  "optional": true
106
77
  }
107
78
  },
108
- "devDependencies": {
109
- "@vitejs/plugin-vue2": "^2.3.4",
110
- "cross-env": "^7.0.3",
111
- "rollup-plugin-visualizer": "^6.0.5",
112
- "vite": "^6.4.1",
113
- "vite-plugin-css-injected-by-js": "^3.5.2"
114
- },
115
79
  "publishConfig": {
116
80
  "access": "public",
117
81
  "tag": "next"
@@ -132,4 +96,4 @@
132
96
  "vuetify"
133
97
  ],
134
98
  "sideEffects": false
135
- }
99
+ }
File without changes
File without changes
File without changes
File without changes