@genesislcap/foundation-events 14.192.2 → 14.193.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.
package/dist/dts/types.d.ts
CHANGED
|
@@ -64,12 +64,12 @@ export declare const targetValue: ValueGetter;
|
|
|
64
64
|
* import { targetChecked } from '@genesislcap/foundation-events';
|
|
65
65
|
* ...
|
|
66
66
|
* <${checkboxTag}
|
|
67
|
-
* ?checked="${(x) => x.store.formEntry.
|
|
68
|
-
* @change="${(x, c) => x.$emit('auth-
|
|
69
|
-
* name="show-
|
|
70
|
-
* data-test-id="show-
|
|
67
|
+
* ?checked="${(x) => x.store.formEntry.showPassword}"
|
|
68
|
+
* @change="${(x, c) => x.$emit('auth-showPassword-changed', targetChecked(c))}"
|
|
69
|
+
* name="show-password"
|
|
70
|
+
* data-test-id="show-password"
|
|
71
71
|
* >
|
|
72
|
-
* Show
|
|
72
|
+
* Show Password
|
|
73
73
|
* </${checkboxTag}>
|
|
74
74
|
* ```
|
|
75
75
|
*
|
package/dist/esm/types.js
CHANGED
|
@@ -33,12 +33,12 @@ export const targetValue = (ctx) => ctx.event.target.value;
|
|
|
33
33
|
* import { targetChecked } from '@genesislcap/foundation-events';
|
|
34
34
|
* ...
|
|
35
35
|
* <${checkboxTag}
|
|
36
|
-
* ?checked="${(x) => x.store.formEntry.
|
|
37
|
-
* @change="${(x, c) => x.$emit('auth-
|
|
38
|
-
* name="show-
|
|
39
|
-
* data-test-id="show-
|
|
36
|
+
* ?checked="${(x) => x.store.formEntry.showPassword}"
|
|
37
|
+
* @change="${(x, c) => x.$emit('auth-showPassword-changed', targetChecked(c))}"
|
|
38
|
+
* name="show-password"
|
|
39
|
+
* data-test-id="show-password"
|
|
40
40
|
* >
|
|
41
|
-
* Show
|
|
41
|
+
* Show Password
|
|
42
42
|
* </${checkboxTag}>
|
|
43
43
|
* ```
|
|
44
44
|
*
|
|
@@ -4042,7 +4042,7 @@
|
|
|
4042
4042
|
{
|
|
4043
4043
|
"kind": "Variable",
|
|
4044
4044
|
"canonicalReference": "@genesislcap/foundation-events!targetChecked:var",
|
|
4045
|
-
"docComment": "/**\n * @example\n * ```ts\n * import { targetChecked } from '@genesislcap/foundation-events';\n * ...\n * <${checkboxTag}\n * ?checked=\"${(x) => x.store.formEntry.
|
|
4045
|
+
"docComment": "/**\n * @example\n * ```ts\n * import { targetChecked } from '@genesislcap/foundation-events';\n * ...\n * <${checkboxTag}\n * ?checked=\"${(x) => x.store.formEntry.showPassword}\"\n * @change=\"${(x, c) => x.$emit('auth-showPassword-changed', targetChecked(c))}\"\n * name=\"show-password\"\n * data-test-id=\"show-password\"\n * >\n * Show Password\n * </${checkboxTag}>\n * ```\n *\n * @public\n */\n",
|
|
4046
4046
|
"excerptTokens": [
|
|
4047
4047
|
{
|
|
4048
4048
|
"kind": "Content",
|
|
@@ -535,12 +535,12 @@ export declare const registerEmitter: <TEventDetailMap extends EventDetailMap>()
|
|
|
535
535
|
* import { targetChecked } from '@genesislcap/foundation-events';
|
|
536
536
|
* ...
|
|
537
537
|
* <${checkboxTag}
|
|
538
|
-
* ?checked="${(x) => x.store.formEntry.
|
|
539
|
-
* @change="${(x, c) => x.$emit('auth-
|
|
540
|
-
* name="show-
|
|
541
|
-
* data-test-id="show-
|
|
538
|
+
* ?checked="${(x) => x.store.formEntry.showPassword}"
|
|
539
|
+
* @change="${(x, c) => x.$emit('auth-showPassword-changed', targetChecked(c))}"
|
|
540
|
+
* name="show-password"
|
|
541
|
+
* data-test-id="show-password"
|
|
542
542
|
* >
|
|
543
|
-
* Show
|
|
543
|
+
* Show Password
|
|
544
544
|
* </${checkboxTag}>
|
|
545
545
|
* ```
|
|
546
546
|
*
|
|
@@ -17,12 +17,12 @@ targetChecked: ValueGetter
|
|
|
17
17
|
import { targetChecked } from '@genesislcap/foundation-events';
|
|
18
18
|
...
|
|
19
19
|
<${checkboxTag}
|
|
20
|
-
?checked="${(x) => x.store.formEntry.
|
|
21
|
-
@change="${(x, c) => x.$emit('auth-
|
|
22
|
-
name="show-
|
|
23
|
-
data-test-id="show-
|
|
20
|
+
?checked="${(x) => x.store.formEntry.showPassword}"
|
|
21
|
+
@change="${(x, c) => x.$emit('auth-showPassword-changed', targetChecked(c))}"
|
|
22
|
+
name="show-password"
|
|
23
|
+
data-test-id="show-password"
|
|
24
24
|
>
|
|
25
|
-
Show
|
|
25
|
+
Show Password
|
|
26
26
|
</${checkboxTag}>
|
|
27
27
|
```
|
|
28
28
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-events",
|
|
3
3
|
"description": "Genesis Foundation Events",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.193.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -49,17 +49,17 @@
|
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@genesislcap/foundation-testing": "14.
|
|
53
|
-
"@genesislcap/genx": "14.
|
|
54
|
-
"@genesislcap/rollup-builder": "14.
|
|
55
|
-
"@genesislcap/ts-builder": "14.
|
|
56
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
57
|
-
"@genesislcap/vite-builder": "14.
|
|
58
|
-
"@genesislcap/webpack-builder": "14.
|
|
52
|
+
"@genesislcap/foundation-testing": "14.193.0",
|
|
53
|
+
"@genesislcap/genx": "14.193.0",
|
|
54
|
+
"@genesislcap/rollup-builder": "14.193.0",
|
|
55
|
+
"@genesislcap/ts-builder": "14.193.0",
|
|
56
|
+
"@genesislcap/uvu-playwright-builder": "14.193.0",
|
|
57
|
+
"@genesislcap/vite-builder": "14.193.0",
|
|
58
|
+
"@genesislcap/webpack-builder": "14.193.0",
|
|
59
59
|
"rimraf": "^5.0.0"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@genesislcap/foundation-logger": "14.
|
|
62
|
+
"@genesislcap/foundation-logger": "14.193.0",
|
|
63
63
|
"@microsoft/fast-element": "^1.12.0",
|
|
64
64
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
65
65
|
"tslib": "^2.3.1"
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"publishConfig": {
|
|
73
73
|
"access": "public"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "8ffb9b512f059cfabe6bb8a0e4b58f12b12f7a89"
|
|
76
76
|
}
|