agnosticui-core 2.0.0-alpha.4 → 2.0.0-alpha.5
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/{VueButton.vue_vue_type_script_setup_true_lang-Bq8IPXqd.js → VueButton.vue_vue_type_script_setup_true_lang-D1jGatE9.js} +17 -15
- package/dist/{VueButtonFx.vue_vue_type_script_setup_true_lang-BUudF-lg.js → VueButtonFx.vue_vue_type_script_setup_true_lang-BRrt6Nxs.js} +1 -0
- package/dist/{VueMenu.vue_vue_type_script_setup_true_lang-bnn7ochj.js → VueMenu.vue_vue_type_script_setup_true_lang-BXc7397e.js} +5 -4
- package/dist/components/Button/core/_Button.d.ts +5 -0
- package/dist/components/Button/core/_Button.d.ts.map +1 -1
- package/dist/components/Button/core/_Button.js +79 -53
- package/dist/components/Button/vue/VueButton.js +1 -1
- package/dist/components/Button/vue/VueButton.vue.d.ts +3 -0
- package/dist/components/Button/vue/VueButton.vue.d.ts.map +1 -1
- package/dist/components/Button/vue/index.js +1 -1
- package/dist/components/ButtonFx/vue/VueButtonFx.js +1 -1
- package/dist/components/ButtonFx/vue/index.js +1 -1
- package/dist/components/Checkbox/core/_Checkbox.js +4 -4
- package/dist/components/Combobox/core/_Combobox.js +1 -1
- package/dist/components/Input/core/_Input.d.ts.map +1 -1
- package/dist/components/Input/core/_Input.js +37 -29
- package/dist/components/Link/core/_Link.d.ts.map +1 -1
- package/dist/components/Link/core/_Link.js +1 -0
- package/dist/components/Menu/vue/VueMenu.js +1 -1
- package/dist/components/Menu/vue/index.js +1 -1
- package/dist/shared/form-control-styles.js +1 -1
- package/package.json +1 -1
- package/src/components/Button/core/_Button.ts +41 -10
- package/src/components/Button/vue/VueButton.vue +2 -0
- package/src/components/Checkbox/core/_Checkbox.ts +4 -4
- package/src/components/Combobox/core/_Combobox.ts +1 -1
- package/src/components/Input/core/_Input.ts +9 -1
- package/src/components/Link/core/_Link.ts +1 -0
- package/src/shared/form-control-styles.ts +1 -1
- package/src/components/Drawer/v1/dialog--drawer-bottom.hbs +0 -48
- package/src/components/Drawer/v1/dialog--drawer-end.hbs +0 -48
- package/src/components/Drawer/v1/dialog--drawer-start.hbs +0 -48
- package/src/components/Drawer/v1/dialog--drawer-top.hbs +0 -48
- package/src/components/Drawer/v1/dialog-demo.css +0 -13
- package/src/components/Drawer/v1/dialog.config.yml +0 -5
- package/src/components/Drawer/v1/dialog.css +0 -99
- package/src/components/Drawer/v1/dialog.hbs +0 -48
- package/src/components/Drawer/v1/drawer-animations.css +0 -52
- package/src/components/Drawer/v1/drawer.css +0 -50
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as r, ref as g, watch as c, createElementBlock as h, openBlock as b, mergeProps as p, renderSlot as y } from "vue";
|
|
2
2
|
import "./components/Button/core/Button.js";
|
|
3
|
-
const B = [".disabled", ".loading", ".toggle", ".pressed", ".bordered", ".ghost", ".link", ".grouped", ".ariaLabel", "type", "variant", "size", "shape"], v = /* @__PURE__ */
|
|
3
|
+
const B = [".disabled", ".loading", ".toggle", ".pressed", ".bordered", ".ghost", ".link", ".grouped", ".fullWidth", ".ariaLabel", "type", "variant", "size", "shape"], v = /* @__PURE__ */ r({
|
|
4
4
|
__name: "VueButton",
|
|
5
5
|
props: {
|
|
6
6
|
variant: { default: "" },
|
|
@@ -10,6 +10,7 @@ const B = [".disabled", ".loading", ".toggle", ".pressed", ".bordered", ".ghost"
|
|
|
10
10
|
ghost: { type: Boolean, default: !1 },
|
|
11
11
|
link: { type: Boolean, default: !1 },
|
|
12
12
|
grouped: { type: Boolean, default: !1 },
|
|
13
|
+
fullWidth: { type: Boolean, default: !1 },
|
|
13
14
|
type: { default: "button" },
|
|
14
15
|
disabled: { type: Boolean, default: !1 },
|
|
15
16
|
loading: { type: Boolean, default: !1 },
|
|
@@ -19,24 +20,24 @@ const B = [".disabled", ".loading", ".toggle", ".pressed", ".bordered", ".ghost"
|
|
|
19
20
|
},
|
|
20
21
|
emits: ["click", "focus", "blur", "toggle", "update:pressed"],
|
|
21
22
|
setup(e, { emit: n }) {
|
|
22
|
-
const d = e,
|
|
23
|
-
|
|
24
|
-
}, i = (t) => {
|
|
25
|
-
a("focus", t);
|
|
26
|
-
}, r = (t) => {
|
|
27
|
-
a("blur", t);
|
|
23
|
+
const d = e, l = n, a = g(), s = (t) => {
|
|
24
|
+
l("click", t);
|
|
28
25
|
}, u = (t) => {
|
|
26
|
+
l("focus", t);
|
|
27
|
+
}, i = (t) => {
|
|
28
|
+
l("blur", t);
|
|
29
|
+
}, f = (t) => {
|
|
29
30
|
const o = t;
|
|
30
|
-
|
|
31
|
+
l("toggle", o.detail), l("update:pressed", o.detail.pressed);
|
|
31
32
|
};
|
|
32
33
|
return c(
|
|
33
34
|
() => d.pressed,
|
|
34
35
|
(t) => {
|
|
35
|
-
|
|
36
|
+
a.value && d.toggle && (a.value.pressed = t);
|
|
36
37
|
}
|
|
37
|
-
), (t, o) => (
|
|
38
|
+
), (t, o) => (b(), h("ag-button", p({
|
|
38
39
|
ref_key: "buttonRef",
|
|
39
|
-
ref:
|
|
40
|
+
ref: a,
|
|
40
41
|
".disabled": e.disabled,
|
|
41
42
|
".loading": e.loading,
|
|
42
43
|
".toggle": e.toggle,
|
|
@@ -45,15 +46,16 @@ const B = [".disabled", ".loading", ".toggle", ".pressed", ".bordered", ".ghost"
|
|
|
45
46
|
".ghost": e.ghost,
|
|
46
47
|
".link": e.link,
|
|
47
48
|
".grouped": e.grouped,
|
|
49
|
+
".fullWidth": e.fullWidth,
|
|
48
50
|
".ariaLabel": e.ariaLabel,
|
|
49
51
|
type: e.type,
|
|
50
52
|
variant: e.variant,
|
|
51
53
|
size: e.size,
|
|
52
54
|
shape: e.shape,
|
|
53
55
|
onClick: s,
|
|
54
|
-
onFocus:
|
|
55
|
-
onBlur:
|
|
56
|
-
onToggle:
|
|
56
|
+
onFocus: u,
|
|
57
|
+
onBlur: i,
|
|
58
|
+
onToggle: f
|
|
57
59
|
}, t.$attrs), [
|
|
58
60
|
y(t.$slots, "default")
|
|
59
61
|
], 48, B));
|
|
@@ -10,6 +10,7 @@ const B = [".disabled", ".loading", ".toggle", ".pressed", ".bordered", ".ghost"
|
|
|
10
10
|
ghost: { type: Boolean, default: !1 },
|
|
11
11
|
link: { type: Boolean, default: !1 },
|
|
12
12
|
grouped: { type: Boolean, default: !1 },
|
|
13
|
+
fullWidth: { type: Boolean },
|
|
13
14
|
type: { default: "button" },
|
|
14
15
|
disabled: { type: Boolean, default: !1 },
|
|
15
16
|
loading: { type: Boolean, default: !1 },
|
|
@@ -20,6 +20,7 @@ const w = [".disabled", ".loading", ".bordered", ".ghost", ".link", ".grouped",
|
|
|
20
20
|
ghost: { type: Boolean },
|
|
21
21
|
link: { type: Boolean },
|
|
22
22
|
grouped: { type: Boolean },
|
|
23
|
+
fullWidth: { type: Boolean },
|
|
23
24
|
type: {},
|
|
24
25
|
disabled: { type: Boolean, default: !1 },
|
|
25
26
|
loading: { type: Boolean },
|
|
@@ -40,10 +41,10 @@ const w = [".disabled", ".loading", ".bordered", ".ghost", ".link", ".grouped",
|
|
|
40
41
|
t("keydown", n);
|
|
41
42
|
}, f = (n) => {
|
|
42
43
|
t("menu-keydown", n);
|
|
43
|
-
},
|
|
44
|
+
}, y = (n) => {
|
|
44
45
|
const a = n;
|
|
45
46
|
t("menu-open", a.detail), t("update:open", a.detail.open);
|
|
46
|
-
},
|
|
47
|
+
}, g = (n) => {
|
|
47
48
|
const a = n;
|
|
48
49
|
t("menu-close", a.detail), t("update:open", a.detail.open);
|
|
49
50
|
}, b = (n) => {
|
|
@@ -70,8 +71,8 @@ const w = [".disabled", ".loading", ".bordered", ".ghost", ".link", ".grouped",
|
|
|
70
71
|
onFocus: m,
|
|
71
72
|
onBlur: s,
|
|
72
73
|
onKeydown: r,
|
|
73
|
-
onMenuOpen:
|
|
74
|
-
onMenuClose:
|
|
74
|
+
onMenuOpen: y,
|
|
75
|
+
onMenuClose: g,
|
|
75
76
|
onMenuSelect: b
|
|
76
77
|
}, n.$attrs), [
|
|
77
78
|
l(n.$slots, "default"),
|
|
@@ -12,6 +12,7 @@ export interface ButtonProps {
|
|
|
12
12
|
ghost?: boolean;
|
|
13
13
|
link?: boolean;
|
|
14
14
|
grouped?: boolean;
|
|
15
|
+
fullWidth?: boolean;
|
|
15
16
|
type?: 'button' | 'submit' | 'reset';
|
|
16
17
|
disabled?: boolean;
|
|
17
18
|
loading?: boolean;
|
|
@@ -66,6 +67,10 @@ export declare class AgButton extends LitElement implements ButtonProps {
|
|
|
66
67
|
* Grouped style - for buttons in a group, removes inner radius
|
|
67
68
|
*/
|
|
68
69
|
grouped: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* Full-width style - button takes 100% width of container
|
|
72
|
+
*/
|
|
73
|
+
fullWidth: boolean;
|
|
69
74
|
/**
|
|
70
75
|
* Button type - determines behavior in forms
|
|
71
76
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_Button.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/core/_Button.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAEH,OAAO,EAAE,UAAU,EAAa,KAAK,cAAc,EAAE,MAAM,KAAK,CAAC;AAKjE,MAAM,WAAW,uBAAuB;IACtC,OAAO,EAAE,OAAO,CAAC;CAClB;AACD,MAAM,MAAM,iBAAiB,GAAG,WAAW,CAAC,uBAAuB,CAAC,CAAC;AAGrE,MAAM,WAAW,WAAW;IAC1B,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,YAAY,GAAG,EAAE,CAAC;IACzF,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1C,KAAK,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,gBAAgB,GAAG,EAAE,CAAC;IAC5E,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,OAAO,CAAC;IACrC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,UAAU,KAAK,IAAI,CAAC;IACtC,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,UAAU,KAAK,IAAI,CAAC;IACtC,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,UAAU,KAAK,IAAI,CAAC;IACrC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,iBAAiB,KAAK,IAAI,CAAC;CAC/C;AAED;;;;;;;;;;;;GAYG;AACH,qBAAa,QAAS,SAAQ,UAAW,YAAW,WAAW;IAC7D,MAAM,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"_Button.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/core/_Button.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { LitElement as l, css as
|
|
2
|
-
import { n as
|
|
3
|
-
import { o as
|
|
4
|
-
var b = Object.defineProperty, o = (g,
|
|
5
|
-
for (var n = void 0,
|
|
6
|
-
(u = g[
|
|
7
|
-
return n && b(
|
|
1
|
+
import { LitElement as l, css as h, html as c } from "lit";
|
|
2
|
+
import { n as r } from "../../../property-CemaeiRl.js";
|
|
3
|
+
import { o as s } from "../../../if-defined-C8i28hSj.js";
|
|
4
|
+
var b = Object.defineProperty, o = (g, a, e, v) => {
|
|
5
|
+
for (var n = void 0, i = g.length - 1, u; i >= 0; i--)
|
|
6
|
+
(u = g[i]) && (n = u(a, e, n) || n);
|
|
7
|
+
return n && b(a, e, n), n;
|
|
8
8
|
};
|
|
9
9
|
const d = class d extends l {
|
|
10
10
|
constructor() {
|
|
11
|
-
super(), this.disabled = !1, this.loading = !1, this.toggle = !1, this.pressed = !1, this.bordered = !1, this.ghost = !1, this.link = !1, this.grouped = !1, this.type = "button", this.ariaLabel = "", this.variant = "", this.size = "md", this.shape = "";
|
|
11
|
+
super(), this.disabled = !1, this.loading = !1, this.toggle = !1, this.pressed = !1, this.bordered = !1, this.ghost = !1, this.link = !1, this.grouped = !1, this.fullWidth = !1, this.type = "button", this.ariaLabel = "", this.variant = "", this.size = "md", this.shape = "";
|
|
12
12
|
}
|
|
13
|
-
_handleClick(
|
|
14
|
-
if (this.onClick && this.onClick(
|
|
13
|
+
_handleClick(a) {
|
|
14
|
+
if (this.onClick && this.onClick(a), this.toggle && !this.disabled && !this.loading && !a.defaultPrevented) {
|
|
15
15
|
this.pressed = !this.pressed;
|
|
16
16
|
const e = new CustomEvent("toggle", {
|
|
17
17
|
detail: { pressed: this.pressed },
|
|
@@ -21,16 +21,16 @@ const d = class d extends l {
|
|
|
21
21
|
this.dispatchEvent(e), this.onToggle && this.onToggle(e);
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
_handleFocus(
|
|
25
|
-
this.onFocus && this.onFocus(
|
|
24
|
+
_handleFocus(a) {
|
|
25
|
+
this.onFocus && this.onFocus(a);
|
|
26
26
|
const e = new FocusEvent("focus", {
|
|
27
27
|
bubbles: !0,
|
|
28
28
|
composed: !0
|
|
29
29
|
});
|
|
30
30
|
this.dispatchEvent(e);
|
|
31
31
|
}
|
|
32
|
-
_handleBlur(
|
|
33
|
-
this.onBlur && this.onBlur(
|
|
32
|
+
_handleBlur(a) {
|
|
33
|
+
this.onBlur && this.onBlur(a);
|
|
34
34
|
const e = new FocusEvent("blur", {
|
|
35
35
|
bubbles: !0,
|
|
36
36
|
composed: !0
|
|
@@ -41,27 +41,27 @@ const d = class d extends l {
|
|
|
41
41
|
* Focus the internal button element
|
|
42
42
|
*/
|
|
43
43
|
focus() {
|
|
44
|
-
const
|
|
45
|
-
|
|
44
|
+
const a = this.shadowRoot?.querySelector("button");
|
|
45
|
+
a && a.focus();
|
|
46
46
|
}
|
|
47
47
|
/**
|
|
48
48
|
* Blur the internal button element
|
|
49
49
|
*/
|
|
50
50
|
blur() {
|
|
51
|
-
const
|
|
52
|
-
|
|
51
|
+
const a = this.shadowRoot?.querySelector("button");
|
|
52
|
+
a && a.blur();
|
|
53
53
|
}
|
|
54
54
|
render() {
|
|
55
|
-
const
|
|
56
|
-
return
|
|
55
|
+
const a = this.disabled || this.loading;
|
|
56
|
+
return c`
|
|
57
57
|
<button
|
|
58
58
|
type=${this.type}
|
|
59
59
|
part="ag-button"
|
|
60
|
-
?disabled=${
|
|
61
|
-
aria-disabled=${
|
|
62
|
-
aria-busy=${
|
|
63
|
-
aria-pressed=${
|
|
64
|
-
aria-label=${
|
|
60
|
+
?disabled=${a}
|
|
61
|
+
aria-disabled=${a ? "true" : "false"}
|
|
62
|
+
aria-busy=${s(this.loading ? "true" : void 0)}
|
|
63
|
+
aria-pressed=${s(this.toggle ? String(this.pressed) : void 0)}
|
|
64
|
+
aria-label=${s(this.ariaLabel || void 0)}
|
|
65
65
|
@click=${this._handleClick}
|
|
66
66
|
@focus=${this._handleFocus}
|
|
67
67
|
@blur=${this._handleBlur}
|
|
@@ -71,7 +71,7 @@ const d = class d extends l {
|
|
|
71
71
|
`;
|
|
72
72
|
}
|
|
73
73
|
};
|
|
74
|
-
d.styles =
|
|
74
|
+
d.styles = h`
|
|
75
75
|
/* MINIMALIST & THEMEABLE - Styling via --ag-* design tokens */
|
|
76
76
|
:host {
|
|
77
77
|
/* Inline-flex for perfect centering while maintaining inline behavior */
|
|
@@ -80,10 +80,20 @@ d.styles = c`
|
|
|
80
80
|
justify-content: center;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
+
/* Full-width variant */
|
|
84
|
+
:host([full-width]) {
|
|
85
|
+
display: block;
|
|
86
|
+
width: 100%;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
:host([full-width]) button {
|
|
90
|
+
width: 100%;
|
|
91
|
+
}
|
|
92
|
+
|
|
83
93
|
button {
|
|
84
94
|
/* Reset browser defaults */
|
|
85
95
|
margin: 0;
|
|
86
|
-
border:
|
|
96
|
+
border: 1px solid transparent;
|
|
87
97
|
background: var(--ag-background-tertiary);
|
|
88
98
|
|
|
89
99
|
/* Inherit font styling from parent */
|
|
@@ -159,30 +169,45 @@ d.styles = c`
|
|
|
159
169
|
|
|
160
170
|
/* Size variants */
|
|
161
171
|
:host([size="x-sm"]) button {
|
|
172
|
+
height: var(--ag-space-8);
|
|
173
|
+
min-height: var(--ag-space-8);
|
|
162
174
|
font-size: calc(var(--ag-font-size-base) - 0.375rem);
|
|
163
|
-
padding: var(--ag-space-
|
|
175
|
+
padding-inline: var(--ag-space-2);
|
|
176
|
+
padding-block: 0;
|
|
164
177
|
}
|
|
165
178
|
|
|
166
179
|
:host([size="sm"]) button {
|
|
180
|
+
height: var(--ag-space-9);
|
|
181
|
+
min-height: var(--ag-space-9);
|
|
167
182
|
font-size: var(--ag-font-size-xs);
|
|
168
|
-
padding: var(--ag-space-
|
|
183
|
+
padding-inline: var(--ag-space-3);
|
|
184
|
+
padding-block: 0;
|
|
169
185
|
}
|
|
170
186
|
|
|
171
187
|
/* Default size (md) - applies when no size attribute or size="md" */
|
|
172
188
|
button,
|
|
173
189
|
:host([size="md"]) button {
|
|
190
|
+
height: var(--ag-space-10);
|
|
191
|
+
min-height: var(--ag-space-10);
|
|
174
192
|
font-size: var(--ag-font-size-sm);
|
|
175
|
-
padding: var(--ag-space-
|
|
193
|
+
padding-inline: var(--ag-space-4);
|
|
194
|
+
padding-block: 0;
|
|
176
195
|
}
|
|
177
196
|
|
|
178
197
|
:host([size="lg"]) button {
|
|
198
|
+
height: var(--ag-space-12);
|
|
199
|
+
min-height: var(--ag-space-12);
|
|
179
200
|
font-size: var(--ag-font-size-base);
|
|
180
|
-
padding: var(--ag-space-
|
|
201
|
+
padding-inline: var(--ag-space-5);
|
|
202
|
+
padding-block: 0;
|
|
181
203
|
}
|
|
182
204
|
|
|
183
205
|
:host([size="xl"]) button {
|
|
206
|
+
height: var(--ag-space-14);
|
|
207
|
+
min-height: var(--ag-space-14);
|
|
184
208
|
font-size: var(--ag-font-size-md);
|
|
185
|
-
padding: var(--ag-space-
|
|
209
|
+
padding-inline: var(--ag-space-6);
|
|
210
|
+
padding-block: 0;
|
|
186
211
|
}
|
|
187
212
|
|
|
188
213
|
/* Shape variants */
|
|
@@ -225,7 +250,7 @@ d.styles = c`
|
|
|
225
250
|
:host([ghost]) button,
|
|
226
251
|
:host([link]) button {
|
|
227
252
|
background: transparent;
|
|
228
|
-
border:
|
|
253
|
+
border-color: transparent;
|
|
229
254
|
box-shadow: none;
|
|
230
255
|
}
|
|
231
256
|
|
|
@@ -306,7 +331,7 @@ d.styles = c`
|
|
|
306
331
|
/* Bordered variant - outline style */
|
|
307
332
|
:host([bordered]) button {
|
|
308
333
|
background: transparent;
|
|
309
|
-
border:
|
|
334
|
+
border-color: var(--ag-neutral-500);
|
|
310
335
|
}
|
|
311
336
|
|
|
312
337
|
:host([bordered][variant="primary"]) button {
|
|
@@ -401,12 +426,10 @@ d.styles = c`
|
|
|
401
426
|
:host([variant="secondary"]) button:disabled,
|
|
402
427
|
button:disabled {
|
|
403
428
|
background: var(--ag-background-disabled);
|
|
404
|
-
color: var(--ag-text-tertiary);
|
|
405
429
|
}
|
|
406
430
|
|
|
407
431
|
:host([variant="monochrome"]) button:disabled {
|
|
408
432
|
background: var(--ag-background-tertiary);
|
|
409
|
-
color: var(--ag-text-tertiary);
|
|
410
433
|
}
|
|
411
434
|
|
|
412
435
|
/* Bordered buttons - dim the border and text with opacity */
|
|
@@ -437,55 +460,58 @@ d.styles = c`
|
|
|
437
460
|
`;
|
|
438
461
|
let t = d;
|
|
439
462
|
o([
|
|
440
|
-
|
|
463
|
+
r({ type: String, reflect: !0 })
|
|
441
464
|
], t.prototype, "variant");
|
|
442
465
|
o([
|
|
443
|
-
|
|
466
|
+
r({ type: String, reflect: !0 })
|
|
444
467
|
], t.prototype, "size");
|
|
445
468
|
o([
|
|
446
|
-
|
|
469
|
+
r({ type: String, reflect: !0 })
|
|
447
470
|
], t.prototype, "shape");
|
|
448
471
|
o([
|
|
449
|
-
|
|
472
|
+
r({ type: Boolean, reflect: !0 })
|
|
450
473
|
], t.prototype, "bordered");
|
|
451
474
|
o([
|
|
452
|
-
|
|
475
|
+
r({ type: Boolean, reflect: !0 })
|
|
453
476
|
], t.prototype, "ghost");
|
|
454
477
|
o([
|
|
455
|
-
|
|
478
|
+
r({ type: Boolean, reflect: !0 })
|
|
456
479
|
], t.prototype, "link");
|
|
457
480
|
o([
|
|
458
|
-
|
|
481
|
+
r({ type: Boolean, reflect: !0 })
|
|
459
482
|
], t.prototype, "grouped");
|
|
460
483
|
o([
|
|
461
|
-
|
|
484
|
+
r({ type: Boolean, reflect: !0, attribute: "full-width" })
|
|
485
|
+
], t.prototype, "fullWidth");
|
|
486
|
+
o([
|
|
487
|
+
r({ type: String })
|
|
462
488
|
], t.prototype, "type");
|
|
463
489
|
o([
|
|
464
|
-
|
|
490
|
+
r({ type: Boolean })
|
|
465
491
|
], t.prototype, "disabled");
|
|
466
492
|
o([
|
|
467
|
-
|
|
493
|
+
r({ type: Boolean })
|
|
468
494
|
], t.prototype, "loading");
|
|
469
495
|
o([
|
|
470
|
-
|
|
496
|
+
r({ type: Boolean })
|
|
471
497
|
], t.prototype, "toggle");
|
|
472
498
|
o([
|
|
473
|
-
|
|
499
|
+
r({ type: Boolean })
|
|
474
500
|
], t.prototype, "pressed");
|
|
475
501
|
o([
|
|
476
|
-
|
|
502
|
+
r({ type: String, reflect: !0, attribute: "aria-label" })
|
|
477
503
|
], t.prototype, "ariaLabel");
|
|
478
504
|
o([
|
|
479
|
-
|
|
505
|
+
r({ attribute: !1 })
|
|
480
506
|
], t.prototype, "onClick");
|
|
481
507
|
o([
|
|
482
|
-
|
|
508
|
+
r({ attribute: !1 })
|
|
483
509
|
], t.prototype, "onFocus");
|
|
484
510
|
o([
|
|
485
|
-
|
|
511
|
+
r({ attribute: !1 })
|
|
486
512
|
], t.prototype, "onBlur");
|
|
487
513
|
o([
|
|
488
|
-
|
|
514
|
+
r({ attribute: !1 })
|
|
489
515
|
], t.prototype, "onToggle");
|
|
490
516
|
export {
|
|
491
517
|
t as AgButton
|
|
@@ -18,6 +18,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
18
18
|
ghost: boolean;
|
|
19
19
|
link: boolean;
|
|
20
20
|
grouped: boolean;
|
|
21
|
+
fullWidth: boolean;
|
|
21
22
|
ariaLabel: string;
|
|
22
23
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
23
24
|
blur: (event: FocusEvent) => void;
|
|
@@ -38,6 +39,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
38
39
|
ghost: boolean;
|
|
39
40
|
link: boolean;
|
|
40
41
|
grouped: boolean;
|
|
42
|
+
fullWidth: boolean;
|
|
41
43
|
ariaLabel: string;
|
|
42
44
|
}>>> & Readonly<{
|
|
43
45
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
@@ -57,6 +59,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
57
59
|
shape: "capsule" | "rounded" | "circle" | "square" | "rounded-square" | "";
|
|
58
60
|
ghost: boolean;
|
|
59
61
|
grouped: boolean;
|
|
62
|
+
fullWidth: boolean;
|
|
60
63
|
loading: boolean;
|
|
61
64
|
pressed: boolean;
|
|
62
65
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VueButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/vue/VueButton.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VueButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/vue/VueButton.vue"],"names":[],"mappings":"AA0BA;AAGA,OAAO,KAAK,EACV,WAAW,EAEX,uBAAuB,EACxB,MAAM,gBAAgB,CAAC;AACxB,OAAO,gBAAgB,CAAC;AAGxB,MAAM,WAAW,cACf,SAAQ,IAAI,CAAC,WAAW,EAAE,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,UAAU,CAAC;CAAG;AAmF7E,iBAAS,cAAc;qBAmDO,GAAG;EAKhC;AAcD,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAAvG,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AACxD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -152,7 +152,7 @@ h.styles = [
|
|
|
152
152
|
align-items: center;
|
|
153
153
|
cursor: pointer;
|
|
154
154
|
user-select: none;
|
|
155
|
-
gap:
|
|
155
|
+
gap: 0;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
:host([disabled]) .checkbox-wrapper {
|
|
@@ -343,15 +343,15 @@ h.styles = [
|
|
|
343
343
|
}
|
|
344
344
|
|
|
345
345
|
.checkbox-label-copy--small {
|
|
346
|
-
font-size:
|
|
346
|
+
font-size: var(--ag-font-size-sm);
|
|
347
347
|
}
|
|
348
348
|
|
|
349
349
|
.checkbox-label-copy--medium {
|
|
350
|
-
font-size:
|
|
350
|
+
font-size: var(--ag-font-size-sm);
|
|
351
351
|
}
|
|
352
352
|
|
|
353
353
|
.checkbox-label-copy--large {
|
|
354
|
-
font-size:
|
|
354
|
+
font-size: var(--ag-font-size-base);
|
|
355
355
|
}
|
|
356
356
|
|
|
357
357
|
/* Respect reduced motion preferences */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_Input.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/core/_Input.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,UAAU,EAAsB,MAAM,KAAK,CAAC;AAKrD,OAAO,EAIL,KAAK,aAAa,EACnB,MAAM,oCAAoC,CAAC;AAE5C,MAAM,MAAM,SAAS,GACjB,MAAM,GACN,UAAU,GACV,OAAO,GACP,QAAQ,GACR,QAAQ,GACR,KAAK,GACL,KAAK,GACL,MAAM,GACN,gBAAgB,GAChB,OAAO,GACP,MAAM,GACN,MAAM,GACN,UAAU,CAAC;AAEf,MAAM,MAAM,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,CAAC;AAEtD;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,UAAU,KAAK,IAAI,CAAC;IACtC,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,UAAU,KAAK,IAAI,CAAC;IACtC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;IAClC,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,UAAU,KAAK,IAAI,CAAC;IACtC,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,UAAU,KAAK,IAAI,CAAC;CACtC;AAED,qBAAa,OAAQ,SAAQ,UAAW,YAAW,UAAU;IAC3D,MAAM,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"_Input.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/core/_Input.ts"],"names":[],"mappings":"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"}
|