dap-design-system 0.35.5 → 0.35.7
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/dds.d.ts +1 -1
- package/dist/dds.js +1 -1
- package/dist/dds.js.map +1 -1
- package/dist/manifest/types/vue/index.d.ts +319 -319
- package/dist/manifest/vscode.html-custom-data.json +209 -209
- package/dist/manifest/web-types.json +595 -595
- package/dist/react-types.ts +6 -6
- package/dist/react.d.ts +146 -146
- package/dist/react.js +79 -79
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
package/dist/dds.d.ts
CHANGED
|
@@ -7382,7 +7382,7 @@ declare global {
|
|
|
7382
7382
|
interface HTMLElementTagNameMap {
|
|
7383
7383
|
'dap-ds-command': DapDSCommand;
|
|
7384
7384
|
'dap-ds-command-group': DapDSCommandGroup;
|
|
7385
|
-
'dap-ds-command-item
|
|
7385
|
+
'dap-ds-command-item': DapDSCommandItem;
|
|
7386
7386
|
}
|
|
7387
7387
|
}
|
|
7388
7388
|
|
package/dist/dds.js
CHANGED
|
@@ -10200,7 +10200,7 @@ let bt = class extends ne {
|
|
|
10200
10200
|
super.firstUpdated(e), this.value && (this.calendar.value = A(this.value).locale(this.locale)), this.calendar.currentDate = this.currentDate, this.calendar.minDate = this.minDate, this.calendar.maxDate = this.maxDate, this.calendar.disabledDate = this.disabledDate, this.formatOptions = ((t = this.format) == null ? void 0 : t.split(this.formatSeparator)) || [];
|
|
10201
10201
|
}
|
|
10202
10202
|
updated(e) {
|
|
10203
|
-
super.updated(e), e.has("value") && (this.calendar.value = this.value, this.setValidity());
|
|
10203
|
+
super.updated(e), e.has("value") && (this.calendar.value = this.value, this.triggerInput.value = this.getFormattedValue(), this.setValidity());
|
|
10204
10204
|
}
|
|
10205
10205
|
getFormattedValue() {
|
|
10206
10206
|
return this.value ? A(this.value).locale(this.locale).format(this.formatOptions[0] || "L") : "";
|