@mekari/pixel3-airene-chat-input 0.0.1-dev.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.
@@ -0,0 +1,75 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/modules/airene-chat-input.props.ts
21
+ var airene_chat_input_props_exports = {};
22
+ __export(airene_chat_input_props_exports, {
23
+ aireneChatInputEmit: () => aireneChatInputEmit,
24
+ aireneChatInputProps: () => aireneChatInputProps
25
+ });
26
+ module.exports = __toCommonJS(airene_chat_input_props_exports);
27
+ var aireneChatInputProps = {
28
+ id: {
29
+ type: String,
30
+ default: ""
31
+ },
32
+ modelValue: {
33
+ type: String,
34
+ default: ""
35
+ },
36
+ placeholder: {
37
+ type: String,
38
+ default: "Ask something..."
39
+ },
40
+ maxlength: {
41
+ type: String
42
+ },
43
+ ariaLabel: {
44
+ type: String
45
+ },
46
+ ariaLabelledBy: {
47
+ type: String
48
+ },
49
+ isReadOnly: {
50
+ type: Boolean,
51
+ default: false
52
+ },
53
+ isDisabled: {
54
+ type: Boolean,
55
+ default: false
56
+ },
57
+ isInvalid: {
58
+ type: Boolean,
59
+ default: false
60
+ },
61
+ isRequired: {
62
+ type: Boolean,
63
+ default: false
64
+ },
65
+ isForceFocus: {
66
+ type: Boolean,
67
+ default: false
68
+ }
69
+ };
70
+ var aireneChatInputEmit = ["change", "input", "keydown", "focus", "blur", "click", "update:modelValue"];
71
+ // Annotate the CommonJS export names for ESM import in node:
72
+ 0 && (module.exports = {
73
+ aireneChatInputEmit,
74
+ aireneChatInputProps
75
+ });
@@ -0,0 +1,9 @@
1
+ import {
2
+ aireneChatInputEmit,
3
+ aireneChatInputProps
4
+ } from "../chunk-4PYKLJPU.mjs";
5
+ import "../chunk-QZ7VFGWC.mjs";
6
+ export {
7
+ aireneChatInputEmit,
8
+ aireneChatInputProps
9
+ };
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@mekari/pixel3-airene-chat-input",
3
+ "description": "Mekari Pixel 3 | Chat Input component for Airene.",
4
+ "version": "0.0.1-dev.0",
5
+ "main": "dist/index.js",
6
+ "license": "MIT",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "dependencies": {
11
+ "@mekari/pixel3-icon": "0.0.18-dev.3",
12
+ "@mekari/pixel3-styled-system": "0.1.3-dev.3",
13
+ "@mekari/pixel3-utils": "0.0.7"
14
+ },
15
+ "peerDependencies": {
16
+ "vue": "^3.4.9"
17
+ },
18
+ "devDependencies": {
19
+ "vue": "^3.4.9"
20
+ },
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "module": "dist/index.mjs",
25
+ "types": "dist/index.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "require": "./dist/index.js",
30
+ "default": "./dist/index.mjs"
31
+ }
32
+ },
33
+ "scripts": {
34
+ "clean": "rimraf dist .turbo",
35
+ "build": "tsup && pnpm build:types",
36
+ "build:fast": "tsup",
37
+ "build:types": "tsup src --dts-only",
38
+ "types:check": "tsc --noEmit",
39
+ "replace-config": "clean-package",
40
+ "restore-config": "clean-package restore"
41
+ }
42
+ }