@rxap/config 16.0.0-dev.6 → 16.0.0-dev.7
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 +8 -0
- package/README.md +1 -1
- package/package.json +5 -4
- package/theme.css +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [16.0.0-dev.7](https://gitlab.com/rxap/packages/compare/@rxap/config@16.0.0-dev.6...@rxap/config@16.0.0-dev.7) (2023-08-01)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- add browser-tailwind as imp dep if project has tailwind configuration ([6ea13c5](https://gitlab.com/rxap/packages/commit/6ea13c5f9b4e652436bf1da879b564d1ed7b8061))
|
|
11
|
+
- add tailwind bundle build target and configurations ([bec6b96](https://gitlab.com/rxap/packages/commit/bec6b96be15bbc11ad072ccefdcaf7df9e8fea52))
|
|
12
|
+
- generate readme with peer dependencies to install ([e7039bb](https://gitlab.com/rxap/packages/commit/e7039bb5e86ffeadfe7cc92d5fc71d32f8efb4fb))
|
|
13
|
+
|
|
6
14
|
# 16.0.0-dev.6 (2023-08-01)
|
|
7
15
|
|
|
8
16
|
### Bug Fixes
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxap/config",
|
|
3
|
-
"version": "16.0.0-dev.
|
|
3
|
+
"version": "16.0.0-dev.7",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"joi": "^17.6.3",
|
|
6
6
|
"tslib": "2.5.3"
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
}
|
|
53
53
|
]
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "7f6659b846dcf3884a3ac68ff2c8e1d6a3438a73",
|
|
56
56
|
"module": "fesm2022/rxap-config.mjs",
|
|
57
57
|
"typings": "index.d.ts",
|
|
58
58
|
"exports": {
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
"esm2022": "./esm2022/rxap-config.mjs",
|
|
65
65
|
"esm": "./esm2022/rxap-config.mjs",
|
|
66
66
|
"default": "./fesm2022/rxap-config.mjs"
|
|
67
|
-
}
|
|
67
|
+
},
|
|
68
|
+
"./theme": "./theme.css"
|
|
68
69
|
}
|
|
69
|
-
}
|
|
70
|
+
}
|
package/theme.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.visible{visibility:visible}.static{position:static}.fixed{position:fixed}.sticky{position:sticky}.block{display:block}.inline{display:inline}.table{display:table}.contents{display:contents}.hidden{display:none}.capitalize{text-transform:capitalize}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}
|