@rackbops/ui-react 0.1.9 → 0.1.11

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.
Files changed (3) hide show
  1. package/LICENSE +25 -0
  2. package/NOTICE +40 -0
  3. package/package.json +6 -3
package/LICENSE ADDED
@@ -0,0 +1,25 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 roshne
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ Portions of the Software (certain themes under styles/) are adapted from
24
+ third-party works used under their own, separate MIT copyright notice; see
25
+ NOTICE.
package/NOTICE ADDED
@@ -0,0 +1,40 @@
1
+ This product includes design-system themes adapted from a third-party project.
2
+
3
+ ------------------------------------------------------------------------------
4
+ nazuraki/ui-std-lib (@nazuraki/styles)
5
+ https://github.com/nazuraki/ui-std-lib
6
+ ------------------------------------------------------------------------------
7
+
8
+ The following themes under styles/ are ports of themes from nazuraki/ui-std-lib,
9
+ re-namespaced from the --nb-* / .nb-* / data-nb-style contract to the rackbops
10
+ --rb-* contract. The aesthetics (palettes, typography, component designs) are
11
+ nazuraki's; the rackbops copies change only the token/class names and adapt each
12
+ theme to the rackbops baseline token set.
13
+
14
+ - styles/luminous-precision/
15
+ - styles/neon-butterfly/ (includes assets/butterfly-circuit.png)
16
+ - styles/summer-cloud/
17
+
18
+ They are used under the MIT License:
19
+
20
+ MIT License
21
+
22
+ Copyright (c) 2026 nazuraki
23
+
24
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25
+ of this software and associated documentation files (the "Software"), to deal
26
+ in the Software without restriction, including without limitation the rights
27
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
28
+ copies of the Software, and to permit persons to whom the Software is
29
+ furnished to do so, subject to the following conditions:
30
+
31
+ The above copyright notice and this permission notice shall be included in all
32
+ copies or substantial portions of the Software.
33
+
34
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
35
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
36
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
37
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
38
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
39
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
40
+ SOFTWARE.
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@rackbops/ui-react",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "React components styled by @rackbops/styles rackbops themes.",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/roshne/rackbops-ui-ux-std-lib.git",
8
+ "url": "git+https://github.com/Rackbops/rackbops-ui-ux-std-lib.git",
9
9
  "directory": "components/react"
10
10
  },
11
11
  "publishConfig": {
@@ -13,7 +13,9 @@
13
13
  },
14
14
  "type": "module",
15
15
  "files": [
16
- "dist"
16
+ "dist",
17
+ "LICENSE",
18
+ "NOTICE"
17
19
  ],
18
20
  "exports": {
19
21
  ".": {
@@ -22,6 +24,7 @@
22
24
  }
23
25
  },
24
26
  "scripts": {
27
+ "prepack": "node ../../scripts/copy-license.mjs",
25
28
  "build": "tsc -p tsconfig.build.json",
26
29
  "test": "tsc -p tsconfig.json --noEmit && node --import tsx --test \"src/**/*.test.tsx\""
27
30
  },