tabler-react-2 0.1.29 → 0.1.31
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/dist/modal/confirm.js +40 -15
- package/dist/modal/index.js +8 -1
- package/dist/ribbon/index.js +30 -10
- package/dist/table/index.js +89 -9
- package/docs/assets/index-BGz0WjR_.css +1 -0
- package/docs/assets/index-BzTYsikY.js +179 -0
- package/docs/index.html +27 -0
- package/package.json +1 -2
- package/package-lock.json +0 -4533
package/docs/index.html
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>React Vite Micro App</title>
|
|
5
|
+
<script src="https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0-beta17/dist/js/tabler.min.js"></script>
|
|
6
|
+
<link
|
|
7
|
+
rel="stylesheet"
|
|
8
|
+
href="https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0-beta17/dist/css/tabler.min.css"
|
|
9
|
+
/>
|
|
10
|
+
<script>
|
|
11
|
+
window.USE_FALLBACK_ANCHOR = true;
|
|
12
|
+
</script>
|
|
13
|
+
<script
|
|
14
|
+
type="module"
|
|
15
|
+
crossorigin
|
|
16
|
+
src="/tabler-react-2/assets/index-BzTYsikY.js"
|
|
17
|
+
></script>
|
|
18
|
+
<link
|
|
19
|
+
rel="stylesheet"
|
|
20
|
+
crossorigin
|
|
21
|
+
href="/tabler-react-2/assets/index-BGz0WjR_.css"
|
|
22
|
+
/>
|
|
23
|
+
</head>
|
|
24
|
+
<body>
|
|
25
|
+
<div id="root"></div>
|
|
26
|
+
</body>
|
|
27
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tabler-react-2",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.31",
|
|
4
4
|
"description": "A react implementation of Tabler ui",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"@babel/core": "^7.24.8",
|
|
16
16
|
"@babel/preset-env": "^7.24.8",
|
|
17
17
|
"@babel/preset-react": "^7.24.7",
|
|
18
|
-
"@tabler/icons-react": "^3.14.0",
|
|
19
18
|
"classnames": "^2.5.1",
|
|
20
19
|
"prop-types": "^15.8.1",
|
|
21
20
|
"react": "^18.3.1",
|