@getflip/swirl-components 0.389.1 → 0.390.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/components.json +116 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/swirl-color-input.cjs.entry.js +2 -2
- package/dist/cjs/swirl-components.cjs.js +1 -1
- package/dist/cjs/swirl-date-input.cjs.entry.js +17 -8
- package/dist/cjs/swirl-form-control.cjs.entry.js +16 -2
- package/dist/cjs/swirl-text-input.cjs.entry.js +4 -4
- package/dist/cjs/swirl-time-input.cjs.entry.js +1 -1
- package/dist/collection/components/swirl-color-input/swirl-color-input.js +21 -2
- package/dist/collection/components/swirl-date-input/swirl-date-input.js +37 -9
- package/dist/collection/components/swirl-form-control/swirl-form-control.css +6 -16
- package/dist/collection/components/swirl-form-control/swirl-form-control.js +36 -1
- package/dist/collection/components/swirl-text-input/swirl-text-input.css +1 -5
- package/dist/collection/components/swirl-text-input/swirl-text-input.js +22 -3
- package/dist/collection/components/swirl-time-input/swirl-time-input.js +20 -1
- package/dist/components/assets/pdfjs/pdf.worker.min.mjs +1 -1
- package/dist/components/swirl-color-input.js +4 -3
- package/dist/components/swirl-date-input.js +19 -9
- package/dist/components/swirl-form-control.js +18 -2
- package/dist/components/swirl-text-input2.js +5 -4
- package/dist/components/swirl-time-input.js +2 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/swirl-color-input.entry.js +2 -2
- package/dist/esm/swirl-components.js +1 -1
- package/dist/esm/swirl-date-input.entry.js +17 -8
- package/dist/esm/swirl-form-control.entry.js +16 -2
- package/dist/esm/swirl-text-input.entry.js +4 -4
- package/dist/esm/swirl-time-input.entry.js +1 -1
- package/dist/swirl-components/p-180ed63e.entry.js +1 -0
- package/dist/swirl-components/{p-a320aae9.entry.js → p-3cb7f345.entry.js} +1 -1
- package/dist/swirl-components/{p-87554dba.entry.js → p-57dfce0c.entry.js} +1 -1
- package/dist/swirl-components/p-81b2e380.entry.js +1 -0
- package/dist/swirl-components/p-81ee71b8.entry.js +1 -0
- package/dist/swirl-components/swirl-components.esm.js +1 -1
- package/dist/types/components/swirl-color-input/swirl-color-input.d.ts +1 -0
- package/dist/types/components/swirl-date-input/swirl-date-input.d.ts +3 -2
- package/dist/types/components/swirl-form-control/swirl-form-control.d.ts +2 -0
- package/dist/types/components/swirl-text-input/swirl-text-input.d.ts +1 -0
- package/dist/types/components/swirl-time-input/swirl-time-input.d.ts +1 -0
- package/dist/types/components.d.ts +10 -0
- package/package.json +1 -1
- package/vscode-data.json +20 -0
- package/dist/swirl-components/p-5dd8a1b1.entry.js +0 -1
- package/dist/swirl-components/p-90243eec.entry.js +0 -1
- package/dist/swirl-components/p-d17cd35b.entry.js +0 -1
|
@@ -136,7 +136,7 @@ export class SwirlTimeInput {
|
|
|
136
136
|
const className = classnames("time-input", {
|
|
137
137
|
"time-input--inline": this.inline,
|
|
138
138
|
});
|
|
139
|
-
return (h(Host, { key: '
|
|
139
|
+
return (h(Host, { key: 'e23b038bf99ddfd9893ff2b2cc2981ee7de0fbda' }, h("div", { key: '26b6cbb9a67cfb986bae34b2ff604862992f7076', class: className }, h("input", { key: 'd5123ad3101a1c0571e491d91c5916fba51aabe9', "aria-describedby": this.swirlAriaDescribedby, "aria-disabled": this.disabled ? "true" : undefined, "aria-invalid": ariaInvalid, autoFocus: this.autoFocus, class: "time-input__input", disabled: this.disabled, id: this.id, inputmode: "numeric", onBlur: this.onBlur, onClick: this.onClick, onFocus: this.onFocus, placeholder: this.placeholder, ref: (el) => (this.inputEl = el), required: this.required, type: "text", readonly: this.readonly }), h("span", { key: 'd53e9ea53813798aa0cdd2ce7f6f685053859862', class: "time-input__icon" }, h("swirl-icon-time-outlined", { key: '61e91a6ae302b0b64d4283525f02b97bad37e9ad', size: this.iconSize })))));
|
|
140
140
|
}
|
|
141
141
|
static get is() { return "swirl-time-input"; }
|
|
142
142
|
static get encapsulation() { return "scoped"; }
|
|
@@ -343,6 +343,25 @@ export class SwirlTimeInput {
|
|
|
343
343
|
"getter": false,
|
|
344
344
|
"setter": false,
|
|
345
345
|
"reflect": true
|
|
346
|
+
},
|
|
347
|
+
"readonly": {
|
|
348
|
+
"type": "boolean",
|
|
349
|
+
"attribute": "readonly",
|
|
350
|
+
"mutable": false,
|
|
351
|
+
"complexType": {
|
|
352
|
+
"original": "boolean",
|
|
353
|
+
"resolved": "boolean",
|
|
354
|
+
"references": {}
|
|
355
|
+
},
|
|
356
|
+
"required": false,
|
|
357
|
+
"optional": true,
|
|
358
|
+
"docs": {
|
|
359
|
+
"tags": [],
|
|
360
|
+
"text": ""
|
|
361
|
+
},
|
|
362
|
+
"getter": false,
|
|
363
|
+
"setter": false,
|
|
364
|
+
"reflect": false
|
|
346
365
|
}
|
|
347
366
|
};
|
|
348
367
|
}
|