ada-ui 0.0.0-20240120121659 → 0.0.0-20240120131308

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/CHANGELOG.md CHANGED
@@ -1,22 +1,10 @@
1
1
  # ada-ui
2
2
 
3
- ## 0.0.0-20240120121659
4
-
5
- ### Patch Changes
6
-
7
- - colors
8
-
9
- ## 0.0.0-20240120121409
10
-
11
- ### Minor Changes
12
-
13
- - Add exports for themes
14
-
15
- ## 0.0.0-20240120120530
3
+ ## 0.0.0-20240120131308
16
4
 
17
5
  ### Minor Changes
18
6
 
19
- - Add exports
7
+ - b03f4b1: Add exports for base and theme styles
20
8
 
21
9
  ## 4.6.0
22
10
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "ada-ui",
3
- "version": "0.0.0-20240120121659",
3
+ "version": "0.0.0-20240120131308",
4
4
  "scripts": {
5
5
  "dev": "concurrently -n scss,serve 'sass scss:css --watch' 'alive-server .'",
6
6
  "build": "rm -rf css && sass scss:css -s compressed --no-source-map",
7
7
  "cs": "changeset",
8
- "snapshot": "npm run build && changeset version --snapshot $1 && changeset publish --no-git-tag --snapshot",
8
+ "snapshot": "npm run build && changeset version --snapshot $1 && changeset publish --no-git-tag --tag",
9
9
  "release": "npm run build && changeset publish"
10
10
  },
11
11
  "license": "MIT",
@@ -13,7 +13,7 @@
13
13
  ".": "./css/ada.css",
14
14
  "./blue": "./css/ada.blue.css",
15
15
  "./green": "./css/ada.green.css",
16
- "./tailwind-config": "./tailwind.config.js"
16
+ "./tailwind": "./tailwind.config.js"
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
@@ -2,13 +2,6 @@
2
2
  module.exports = {
3
3
  content: ["./src/**/*.{html,jsx,tsx}"],
4
4
  theme: {
5
- colors: {
6
- brand: {
7
- DEFAULT: "#F5A623",
8
- dark: "#F5A623",
9
- light: "#F5A623",
10
- },
11
- },
12
5
  extend: {},
13
6
  },
14
7
  plugins: [],