@abcagency/hc-ui-components 1.0.22 → 1.0.24

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/index.js CHANGED
@@ -1,3 +1,4 @@
1
1
  export { HireControlMap } from './components/HireControlMap.js';
2
- import 'styles/index.css';
2
+
3
+ require('./styles/index.css');
3
4
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
1
+ {"version":3,"file":"index.js","sources":["../src/index.js"],"sourcesContent":["import HireControlMap from './components/HireControlMap';\nrequire('./styles/index.css');\n\nexport { HireControlMap };\n"],"names":["require"],"mappings":";;AACAA,OAAO,CAAC,oBAAoB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abcagency/hc-ui-components",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "description": "UI Components for HireControl",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/rollup.config.mjs CHANGED
@@ -26,7 +26,7 @@ const plugins = [
26
26
  resolve(),
27
27
  postcss({
28
28
  extensions: ['.css'],
29
- extract: 'globals.css',
29
+ extract: 'index.css',
30
30
  minimize: true,
31
31
  plugins: [
32
32
  tailwindcss,
package/src/index.js CHANGED
@@ -1,4 +1,4 @@
1
1
  import HireControlMap from './components/HireControlMap';
2
- import 'styles/index.css';
2
+ require('./styles/index.css');
3
3
 
4
4
  export { HireControlMap };
@@ -1,23 +0,0 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- /* @layer base {
6
- html {
7
- @apply hc-text-400 hc-text-uiText [scroll-behavior:smooth];
8
- }
9
- }
10
-
11
- @layer components {
12
- .track * {
13
- @apply hc-pointer-events-none;
14
- }
15
-
16
- .hc-stretched-link::after {
17
- @apply hc-content-[''] hc-absolute hc-inset-0 hc-z-[1] hc-pointer-events-auto hc-bg-transparent;
18
- }
19
- }
20
-
21
- .hc-fit-content{
22
- height:fit-content;
23
- } */