dash-button-web 0.0.18 → 0.0.19-beta.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/cjs/dash-button.cjs.entry.js +198 -101
- package/dist/cjs/dash-button.cjs.entry.js.map +1 -1
- package/dist/cjs/{index-ad267eeb.js → index-87d4993d.js} +1 -5
- package/dist/cjs/index-87d4993d.js.map +1 -0
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/web-compnont.cjs.js +2 -2
- package/dist/collection/components/my-component/dash-button.css +3 -3
- package/dist/collection/components/my-component/dash-button.js +91 -299
- package/dist/collection/components/my-component/dash-button.js.map +1 -1
- package/dist/collection/services/config.js +59 -0
- package/dist/collection/services/config.js.map +1 -0
- package/dist/collection/services/menu.js +52 -0
- package/dist/collection/services/menu.js.map +1 -0
- package/dist/components/dash-button.js +201 -115
- package/dist/components/dash-button.js.map +1 -1
- package/dist/esm/dash-button.entry.js +198 -101
- package/dist/esm/dash-button.entry.js.map +1 -1
- package/dist/esm/{index-46149754.js → index-e3df5eaf.js} +1 -5
- package/dist/{cjs/index-ad267eeb.js.map → esm/index-e3df5eaf.js.map} +1 -1
- package/dist/esm/loader.js +3 -3
- package/dist/esm/web-compnont.js +3 -3
- package/dist/types/components/my-component/dash-button.d.ts +8 -18
- package/dist/types/components.d.ts +0 -22
- package/dist/types/services/config.d.ts +47 -0
- package/dist/types/services/menu.d.ts +27 -0
- package/dist/web-compnont/p-63d22b03.entry.js +10 -0
- package/dist/web-compnont/p-63d22b03.entry.js.map +1 -0
- package/dist/web-compnont/p-c1ec12fe.js +3 -0
- package/dist/web-compnont/p-c1ec12fe.js.map +1 -0
- package/dist/web-compnont/web-compnont.esm.js +1 -1
- package/dist/web-compnont/web-compnont.esm.js.map +1 -1
- package/package.json +1 -1
- package/readme.md +49 -47
- package/dist/esm/index-46149754.js.map +0 -1
- package/dist/web-compnont/p-ac1910bb.entry.js +0 -10
- package/dist/web-compnont/p-ac1910bb.entry.js.map +0 -1
- package/dist/web-compnont/p-db53c3e9.js +0 -3
- package/dist/web-compnont/p-db53c3e9.js.map +0 -1
|
@@ -201,10 +201,6 @@ const parsePropertyValue = (propValue, propType) => {
|
|
|
201
201
|
// but we'll cheat here and say that the string "false" is the boolean false
|
|
202
202
|
return propValue === 'false' ? false : propValue === '' || !!propValue;
|
|
203
203
|
}
|
|
204
|
-
if (propType & 2 /* MEMBER_FLAGS.Number */) {
|
|
205
|
-
// force it to be a number
|
|
206
|
-
return parseFloat(propValue);
|
|
207
|
-
}
|
|
208
204
|
if (propType & 1 /* MEMBER_FLAGS.String */) {
|
|
209
205
|
// could have been passed as a number or boolean
|
|
210
206
|
// but we still want it as a string
|
|
@@ -1767,4 +1763,4 @@ const writeTask = /*@__PURE__*/ queueTask(queueDomWrites, true);
|
|
|
1767
1763
|
|
|
1768
1764
|
export { bootstrapLazy as b, getElement as g, h, promiseResolve as p, registerInstance as r, setNonce as s };
|
|
1769
1765
|
|
|
1770
|
-
//# sourceMappingURL=index-
|
|
1766
|
+
//# sourceMappingURL=index-e3df5eaf.js.map
|