semmet-angular 0.8.0 → 0.10.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/README.md +6 -1
- package/package.json +1 -1
- package/src/button/files/__name@dasherize__/__name@dasherize__.css.template +115 -0
- package/src/button/files/__name@dasherize__/__name@dasherize__.html.template +15 -0
- package/src/button/files/__name@dasherize__/__name@dasherize__.ts.template +45 -0
- package/src/button/index.d.ts +1 -0
- package/src/button/index.js +6 -0
- package/src/button/index.js.map +1 -0
- package/src/button/index.ts +3 -0
- package/src/button/schema.d.ts +1 -0
- package/src/button/schema.js +3 -0
- package/src/button/schema.js.map +1 -0
- package/src/button/schema.json +29 -0
- package/src/button/schema.ts +1 -0
- package/src/collection.json +25 -0
- package/src/form/files/__name@dasherize__/__name@dasherize__.css.template +122 -0
- package/src/form/files/__name@dasherize__/__name@dasherize__.html.template +70 -0
- package/src/form/files/__name@dasherize__/__name@dasherize__.ts.template +76 -0
- package/src/form/index.d.ts +1 -0
- package/src/form/index.js +6 -0
- package/src/form/index.js.map +1 -0
- package/src/form/index.ts +3 -0
- package/src/form/schema.d.ts +1 -0
- package/src/form/schema.js +3 -0
- package/src/form/schema.js.map +1 -0
- package/src/form/schema.json +29 -0
- package/src/form/schema.ts +1 -0
- package/src/input/files/__name@dasherize__/__name@dasherize__.css.template +80 -0
- package/src/input/files/__name@dasherize__/__name@dasherize__.html.template +32 -0
- package/src/input/files/__name@dasherize__/__name@dasherize__.ts.template +48 -0
- package/src/input/index.d.ts +1 -0
- package/src/input/index.js +6 -0
- package/src/input/index.js.map +1 -0
- package/src/input/index.ts +3 -0
- package/src/input/schema.d.ts +1 -0
- package/src/input/schema.js +3 -0
- package/src/input/schema.js.map +1 -0
- package/src/input/schema.json +29 -0
- package/src/input/schema.ts +1 -0
- package/src/skeleton/files/__name@dasherize__/__name@dasherize__.css.template +91 -0
- package/src/skeleton/files/__name@dasherize__/__name@dasherize__.html.template +31 -0
- package/src/skeleton/files/__name@dasherize__/__name@dasherize__.ts.template +69 -0
- package/src/skeleton/index.d.ts +1 -0
- package/src/skeleton/index.js +6 -0
- package/src/skeleton/index.js.map +1 -0
- package/src/skeleton/index.ts +3 -0
- package/src/skeleton/schema.d.ts +1 -0
- package/src/skeleton/schema.js +3 -0
- package/src/skeleton/schema.js.map +1 -0
- package/src/skeleton/schema.json +29 -0
- package/src/skeleton/schema.ts +1 -0
- package/src/textarea/files/__name@dasherize__/__name@dasherize__.css.template +95 -0
- package/src/textarea/files/__name@dasherize__/__name@dasherize__.html.template +40 -0
- package/src/textarea/files/__name@dasherize__/__name@dasherize__.ts.template +56 -0
- package/src/textarea/index.d.ts +1 -0
- package/src/textarea/index.js +6 -0
- package/src/textarea/index.js.map +1 -0
- package/src/textarea/index.ts +3 -0
- package/src/textarea/schema.d.ts +1 -0
- package/src/textarea/schema.js +3 -0
- package/src/textarea/schema.js.map +1 -0
- package/src/textarea/schema.json +29 -0
- package/src/textarea/schema.ts +1 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.textarea = void 0;
|
|
4
|
+
const generate_component_1 = require("../utils/generate-component");
|
|
5
|
+
exports.textarea = (0, generate_component_1.createAriaComponentSchematic)();
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";;;AAAA,oEAA2E;AAE9D,QAAA,QAAQ,GAAG,IAAA,iDAA4B,GAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ComponentSchematicOptions as Schema } from '../utils/schema-types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["schema.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema",
|
|
3
|
+
"$id": "SemmetAngularTextarea",
|
|
4
|
+
"title": "Semmet Angular Textarea Options Schema",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"description": "Generates a standalone Angular Textarea component with native textarea semantics, label, hint text, validation message wiring, and signal-based value state.",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"properties": {
|
|
9
|
+
"name": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "The name for the new component. Used to derive the class name, selector, and file names.",
|
|
12
|
+
"$default": { "$source": "argv", "index": 0 },
|
|
13
|
+
"x-prompt": "What name would you like to use for the textarea component?"
|
|
14
|
+
},
|
|
15
|
+
"path": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": "path",
|
|
18
|
+
"$default": { "$source": "workingDirectory" },
|
|
19
|
+
"description": "The path where the component files should be created, relative to the workspace root. Defaults to the project's source root.",
|
|
20
|
+
"visible": false
|
|
21
|
+
},
|
|
22
|
+
"project": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"description": "The name of the project to add the component to.",
|
|
25
|
+
"$default": { "$source": "projectName" }
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"required": ["name", "project"]
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ComponentSchematicOptions as Schema } from '../utils/schema-types';
|