@ostack.tech/ui-exhibit 0.10.0 → 0.10.2
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 +1 -1
- package/dist/ostack-ui-exhibit.css +1 -1
- package/dist/ostack-ui-exhibit.js +7 -7
- package/dist/ostack-ui-exhibit.js.map +1 -1
- package/dist/types/ExhibitContext.d.ts +1 -2
- package/dist/webapp/assets/{index-54a2WCtJ.css → index-B9c8tQNy.css} +1 -1
- package/dist/webapp/assets/{index-DzBccsSr.js → index-CTszA3pd.js} +19 -19
- package/dist/webapp/index.html +2 -2
- package/package.json +3 -3
- package/scss/_App.scss +1 -1
package/dist/webapp/index.html
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>ostack/UI Exhibit</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-CTszA3pd.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/assets/index-B9c8tQNy.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ostack.tech/ui-exhibit",
|
|
3
3
|
"description": "Exhibit of ostack/UI components.",
|
|
4
|
-
"version": "0.10.
|
|
4
|
+
"version": "0.10.2",
|
|
5
5
|
"homepage": "https://ui.ostack.tech/",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Opensoft",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
],
|
|
35
35
|
"scripts": {
|
|
36
36
|
"dev": "vite",
|
|
37
|
-
"clean": "rimraf dist/",
|
|
37
|
+
"clean": "rimraf dist/ scss/",
|
|
38
38
|
"build": "vite build && vite build --mode webapp && npm run copy:scss",
|
|
39
39
|
"copy:scss": "cpy 'src/**/*.scss' '!src/main.scss' scss/",
|
|
40
40
|
"preview": "vite build --mode webapp && vite preview --outDir dist/webapp/"
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@fortawesome/fontawesome-svg-core": "^6.2.0 || ^7.0.0",
|
|
44
44
|
"@fortawesome/free-regular-svg-icons": "^6.2.0 || ^7.0.0",
|
|
45
45
|
"@fortawesome/free-solid-svg-icons": "^6.2.0 || ^7.0.0",
|
|
46
|
-
"@ostack.tech/ui": "~0.10.
|
|
46
|
+
"@ostack.tech/ui": "~0.10.2",
|
|
47
47
|
"@types/react": "^18.0.0 || ^19.0.0",
|
|
48
48
|
"@types/react-dom": "^18.0.0 || ^19.0.0",
|
|
49
49
|
"date-fns": "^4.1.0",
|
package/scss/_App.scss
CHANGED