@supersoniks/concorde 1.1.44 → 1.1.45
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 +9 -7
- package/concorde-core.bundle.js +16 -16
- package/concorde-core.es.js +212 -95
- package/core/components/functional/list/list.js +10 -7
- package/core/components/functional/queue/queue.d.ts +1 -1
- package/core/components/functional/queue/queue.js +6 -6
- package/core/components/functional/router/router.js +13 -4
- package/core/components/functional/sdui/sdui.d.ts +1 -1
- package/core/components/functional/sdui/sdui.js +1 -1
- package/core/components/functional/states/states.js +1 -0
- package/core/components/functional/value/value.js +3 -2
- package/core/components/ui/button/button.js +32 -28
- package/core/components/ui/form/input-autocomplete/input-autocomplete.js +1 -1
- package/core/components/ui/form/select/select.js +16 -4
- package/core/components/ui/group/group.js +7 -1
- package/core/components/ui/pop/pop.d.ts +5 -4
- package/core/components/ui/pop/pop.js +72 -42
- package/core/components/ui/tooltip/tooltip.js +3 -3
- package/core/mixins/Subscriber.js +6 -6
- package/core/utils/api.d.ts +26 -3
- package/core/utils/api.js +114 -23
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -13,12 +13,14 @@ Design system and functional components based on Lit Element + Vite + Tailwind C
|
|
|
13
13
|
|
|
14
14
|
**Usage**
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
<
|
|
18
|
-
<sonic-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
</sonic-
|
|
22
|
-
|
|
16
|
+
<sonic-code language="html">
|
|
17
|
+
<template>
|
|
18
|
+
<sonic-theme>
|
|
19
|
+
<sonic-button variant="outline">
|
|
20
|
+
Hello Concorde
|
|
21
|
+
</sonic-button>
|
|
22
|
+
</sonic-theme>
|
|
23
|
+
</template>
|
|
24
|
+
</sonic-code>
|
|
23
25
|
|
|
24
26
|
**More docs to come...**
|