@esportsplus/ui 0.44.3 → 0.45.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.
@@ -2,5 +2,6 @@ export { default as alert } from './alert.js';
2
2
  export { default as back } from './back.js';
3
3
  export { default as button } from './button/index.js';
4
4
  export { default as input } from './input.js';
5
+ export { default as link } from './link.js';
5
6
  export { default as select } from './select.js';
6
7
  export { default as textarea } from './textarea.js';
@@ -2,5 +2,6 @@ export { default as alert } from './alert.js';
2
2
  export { default as back } from './back.js';
3
3
  export { default as button } from './button/index.js';
4
4
  export { default as input } from './input.js';
5
+ export { default as link } from './link.js';
5
6
  export { default as select } from './select.js';
6
7
  export { default as textarea } from './textarea.js';
@@ -0,0 +1,11 @@
1
+ declare const _default: {
2
+ primary: {
3
+ class: string;
4
+ style: string;
5
+ };
6
+ tooltip: {
7
+ class: string;
8
+ style: string;
9
+ };
10
+ };
11
+ export default _default;
@@ -0,0 +1,9 @@
1
+ const primary = {
2
+ class: 'link --color-white --flex-row --flex-vertical --text-bold',
3
+ style: '--color-default: var(--color-grey-500);'
4
+ };
5
+ const tooltip = {
6
+ class: `${primary.class} --background-black --padding-horizontal-600 --padding-vertical-500`,
7
+ style: `${primary.style} white-space: nowrap;`
8
+ };
9
+ export default { primary, tooltip };
package/package.json CHANGED
@@ -53,7 +53,7 @@
53
53
  "private": false,
54
54
  "sideEffects": false,
55
55
  "type": "module",
56
- "version": "0.44.3",
56
+ "version": "0.45.0",
57
57
  "scripts": {
58
58
  "build": "run-s build:vite build:ts",
59
59
  "build:ts": "tsc && tsc-alias",
@@ -2,5 +2,6 @@ export { default as alert } from './alert';
2
2
  export { default as back } from './back';
3
3
  export { default as button } from './button';
4
4
  export { default as input } from './input';
5
+ export { default as link } from './link';
5
6
  export { default as select } from './select';
6
7
  export { default as textarea } from './textarea';
@@ -0,0 +1,12 @@
1
+ const primary = {
2
+ class: 'link --color-white --flex-row --flex-vertical --text-bold',
3
+ style: '--color-default: var(--color-grey-500);'
4
+ };
5
+
6
+ const tooltip = {
7
+ class: `${primary.class} --background-black --padding-horizontal-600 --padding-vertical-500`,
8
+ style: `${primary.style} white-space: nowrap;`
9
+ };
10
+
11
+
12
+ export default { primary, tooltip };