@moser-inc/moser-labs-react 1.0.0 → 1.1.0
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 +27 -0
- package/dist/components/LabsButton.d.ts +1 -1
- package/dist/moser-labs-react.cjs +12 -12
- package/dist/moser-labs-react.d.ts +1 -0
- package/dist/moser-labs-react.js +140 -121
- package/dist/style.css +1 -0
- package/package.json +10 -3
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*,:before,:after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset: ;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.bg-primary\!{background-color:var(--primary-color)!important;color:var(--primary-color-text)!important}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moser-inc/moser-labs-react",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "React components for the Moser Labs suite of applications",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "React components for the Moser Labs suite of applications.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/moser-inc/moser-labs.git"
|
|
@@ -11,11 +11,15 @@
|
|
|
11
11
|
"type": "module",
|
|
12
12
|
"main": "dist/moser-labs-react.cjs",
|
|
13
13
|
"module": "dist/moser-labs-react.js",
|
|
14
|
-
"types": "dist/
|
|
14
|
+
"types": "dist/moser-labs-react.d.ts",
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|
|
17
17
|
"import": "./dist/moser-labs-react.js",
|
|
18
18
|
"require": "./dist/moser-labs-react.cjs"
|
|
19
|
+
},
|
|
20
|
+
"./style.css": {
|
|
21
|
+
"import": "./dist/style.css",
|
|
22
|
+
"require": "./dist/style.css"
|
|
19
23
|
}
|
|
20
24
|
},
|
|
21
25
|
"files": [
|
|
@@ -37,17 +41,20 @@
|
|
|
37
41
|
"react-dom": ">= 18.2.0 < 19"
|
|
38
42
|
},
|
|
39
43
|
"dependencies": {
|
|
44
|
+
"clsx": "^2.0.0",
|
|
40
45
|
"primereact": ">= 9.6.0 < 10",
|
|
41
46
|
"react": ">= 18.2.0 < 19",
|
|
42
47
|
"react-dom": ">= 18.2.0 < 19"
|
|
43
48
|
},
|
|
44
49
|
"devDependencies": {
|
|
45
50
|
"@moser-inc/eslint-config-react": "^1.3.6",
|
|
51
|
+
"@moser-inc/unocss-preset-moser-labs": "^1.7.1",
|
|
46
52
|
"@types/react": "^18.2.15",
|
|
47
53
|
"@types/react-dom": "^18.2.7",
|
|
48
54
|
"@vitejs/plugin-react-swc": "^3.3.2",
|
|
49
55
|
"prettier": "^2.8.8",
|
|
50
56
|
"typescript": "^5.1.6",
|
|
57
|
+
"unocss": "^0.53.5",
|
|
51
58
|
"vite": "^4.4.4",
|
|
52
59
|
"vite-plugin-dts": "^3.3.1"
|
|
53
60
|
}
|