@salesql/sql_components_vue3 2.0.0 → 2.1.1
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 +37 -1
- package/dist/constants/events.d.ts +20 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +40 -6
- package/dist/index.es.js +2205 -618
- package/dist/index.es.js.map +1 -1
- package/dist/sql_components_vue3.css +1 -1
- package/dist/ui/DsAlert/DsAlert.vue.d.ts +15 -2
- package/dist/ui/DsAvatar/DsAvatar.types.d.ts +6 -0
- package/dist/ui/DsAvatar/DsAvatar.vue.d.ts +47 -2
- package/dist/ui/DsButton/DsButton.types.d.ts +3 -1
- package/dist/ui/DsButton/DsButton.vue.d.ts +3 -0
- package/dist/ui/DsCell/DsCell.types.d.ts +19 -0
- package/dist/ui/DsCell/DsCell.vue.d.ts +71 -0
- package/dist/ui/DsCell/index.d.ts +2 -0
- package/dist/ui/DsCheckbox/DsCheckbox.types.d.ts +2 -0
- package/dist/ui/DsCheckbox/DsCheckbox.vue.d.ts +10 -1
- package/dist/ui/DsContactValue/DsContactValue.types.d.ts +4 -0
- package/dist/ui/DsContactValue/DsContactValue.vue.d.ts +18 -0
- package/dist/ui/DsCustomTag/DsCustomTag.types.d.ts +9 -0
- package/dist/ui/DsCustomTag/DsCustomTag.vue.d.ts +29 -0
- package/dist/ui/DsCustomTag/index.d.ts +2 -0
- package/dist/ui/DsDataCard/DsDataCard.types.d.ts +2 -0
- package/dist/ui/DsDataCard/DsDataCard.vue.d.ts +58 -1
- package/dist/ui/DsEmptyState/DsEmptyState.types.d.ts +12 -0
- package/dist/ui/DsEmptyState/DsEmptyState.vue.d.ts +53 -0
- package/dist/ui/DsEmptyState/index.d.ts +2 -0
- package/dist/ui/DsInput/DsInput.vue.d.ts +36 -2
- package/dist/ui/DsItemSelectorButton/DsItemSelectorButton.types.d.ts +20 -0
- package/dist/ui/DsItemSelectorButton/DsItemSelectorButton.vue.d.ts +50 -0
- package/dist/ui/DsItemSelectorButton/index.d.ts +2 -0
- package/dist/ui/DsMenuItem/DsMenuItem.types.d.ts +6 -0
- package/dist/ui/DsMenuItem/DsMenuItem.vue.d.ts +42 -0
- package/dist/ui/DsMenuItem/index.d.ts +2 -0
- package/dist/ui/DsModal/DsModal.types.d.ts +10 -0
- package/dist/ui/DsModal/DsModal.vue.d.ts +39 -0
- package/dist/ui/DsNotification/DsNotification.types.d.ts +7 -0
- package/dist/ui/DsNotification/DsNotification.vue.d.ts +14 -3
- package/dist/ui/DsPaginator/DsPaginator.types.d.ts +12 -0
- package/dist/ui/DsPaginator/DsPaginator.vue.d.ts +101 -0
- package/dist/ui/DsPaginator/index.d.ts +2 -0
- package/dist/ui/DsPill/DsPill.types.d.ts +11 -0
- package/dist/ui/DsPill/DsPill.vue.d.ts +46 -0
- package/dist/ui/DsPill/index.d.ts +2 -0
- package/dist/ui/DsPillWithBorder/DsPillWithBorder.types.d.ts +2 -0
- package/dist/ui/DsPillWithBorder/DsPillWithBorder.vue.d.ts +18 -0
- package/dist/ui/DsPillWithBorder/index.d.ts +2 -0
- package/dist/ui/DsRadio/DsRadio.types.d.ts +7 -0
- package/dist/ui/DsRadio/DsRadio.vue.d.ts +55 -0
- package/dist/ui/DsRadio/index.d.ts +2 -0
- package/dist/ui/DsRow/DsRow.types.d.ts +6 -0
- package/dist/ui/DsRow/DsRow.vue.d.ts +37 -0
- package/dist/ui/DsRow/index.d.ts +2 -0
- package/dist/ui/DsSegmentedProgressBar/DsSegmentedProgressBar.types.d.ts +5 -0
- package/dist/ui/DsSegmentedProgressBar/DsSegmentedProgressBar.vue.d.ts +62 -0
- package/dist/ui/DsSegmentedProgressBar/index.d.ts +2 -0
- package/dist/ui/DsSelect/DsSelect.types.d.ts +33 -0
- package/dist/ui/DsSelect/DsSelect.vue.d.ts +126 -0
- package/dist/ui/DsSelect/index.d.ts +2 -0
- package/dist/ui/DsSpinner/DsSpinner.types.d.ts +6 -0
- package/dist/ui/DsSpinner/DsSpinner.vue.d.ts +4 -4
- package/dist/ui/DsSwitch/DsSwitch.types.d.ts +6 -0
- package/dist/ui/DsSwitch/DsSwitch.vue.d.ts +30 -0
- package/dist/ui/DsSwitch/index.d.ts +2 -0
- package/dist/ui/DsTable/DsTable.types.d.ts +11 -0
- package/dist/ui/DsTable/DsTable.vue.d.ts +103 -10
- package/dist/ui/DsTag/DsTag.vue.d.ts +6 -0
- package/dist/ui/DsTextarea/DsTextarea.types.d.ts +8 -0
- package/dist/ui/DsTextarea/DsTextarea.vue.d.ts +14 -3
- package/dist/ui/DsTooltip/DsTooltip.types.d.ts +7 -0
- package/dist/ui/DsTooltip/DsTooltip.vue.d.ts +64 -0
- package/dist/ui/DsTooltip/index.d.ts +2 -0
- package/dist/ui/DsWizardStepper/DsWizardStepper.types.d.ts +13 -0
- package/dist/ui/DsWizardStepper/DsWizardStepper.vue.d.ts +58 -0
- package/dist/ui/DsWizardStepper/index.d.ts +2 -0
- package/llms-full.txt +1350 -0
- package/llms.txt +40 -0
- package/package.json +6 -3
package/llms.txt
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# SalesQL Design System
|
|
2
|
+
|
|
3
|
+
> Librería de componentes Vue 3 (SalesQL) Vue 3 presentational component library published as `@salesql/sql_components_vue3`. Full component docs (props, events, a11y, usage) are in llms-full.txt, shipped in the package.
|
|
4
|
+
|
|
5
|
+
## Components
|
|
6
|
+
|
|
7
|
+
- DsAvatar (Core): Contact/user avatar: an image, generated initials with a deterministic color hash, or an
|
|
8
|
+
- DsBadge (Core): Solid, white-text pill for value types and counts (e.g. "Work", "New"). **Presentational
|
|
9
|
+
- DsButton (Core): Standard clickable control with the DS variant/size vocabulary, plus icon-only
|
|
10
|
+
- DsSpinner (Core): Indeterminate loading indicator — a circular SVG spinner. **Presentational only**: no
|
|
11
|
+
- DsTag (Core): Small bordered chip with an optional × close control. **Presentational only**: `close`
|
|
12
|
+
- DsCell (Data): A single `<td>` cell in the `DsTable` compound API. **Presentational only**: no props
|
|
13
|
+
- DsContactValue (Data): A single email/phone row: a verification glyph, the value itself, and a type badge
|
|
14
|
+
- DsCustomTag (Data): Static status chip (tinted background + matching border/text), non-interactive.
|
|
15
|
+
- DsDataCard (Data): The signature SalesQL emails/phones card: a header (icon, title, sort/edit/collapse/close
|
|
16
|
+
- DsEmptyState (Data): Centered empty-state panel for empty tables, lists, or search results: an optional
|
|
17
|
+
- DsPaginator (Data): Page-window pagination control: prev/next chevrons, numbered page buttons that collapse
|
|
18
|
+
- DsPill (Data): Small solid capsule with white text and a free-form background color (e.g. a dynamic
|
|
19
|
+
- DsPillWithBorder (Data): Bordered pill/chip rendered as a real `<button>`, with an optional leading icon slot and
|
|
20
|
+
- DsRow (Data): A `<tr>` row for the `DsTable` compound API, with hover and selected treatment;
|
|
21
|
+
- DsSegmentedProgressBar (Data): Horizontal, multi-segment data-viz track (e.g. a verification-quality breakdown), with an
|
|
22
|
+
- DsTable (Data): Data-dense table with two composition modes: **declarative** (`columns` + `rows`, with
|
|
23
|
+
- DsVerificationIcon (Data): Status glyph for a contact data point (email/phone): verified, unverified, or newly
|
|
24
|
+
- DsAlert (Feedback): Inline banner for status/confirmation messages (success, info, warning, error). It
|
|
25
|
+
- DsModal (Feedback): Centered dialog with an optional header (title + close button) and footer action row.
|
|
26
|
+
- DsNotification (Feedback): Fixed-position toast card for transient feedback (saved, updated, failed…). It renders
|
|
27
|
+
- DsTooltip (Feedback): Dark bubble that describes a wrapped trigger on hover or keyboard focus, with 4-way
|
|
28
|
+
- DsCheckbox (Forms): Checked / unchecked / indeterminate selection control. **Presentational only**.
|
|
29
|
+
- DsInput (Forms): Single-line text field — the DS "Input". **Presentational only**: it drives its own
|
|
30
|
+
- DsItemSelectorButton (Forms): Pill-shaped trigger that shows the currently assigned item (folder, tag, owner…)
|
|
31
|
+
- DsRadio (Forms): A single radio control (accent-ring dot when checked). **Presentational only**.
|
|
32
|
+
- DsSelect (Forms): Dropdown select — a native-`<select>`-like single/multi picker with a real
|
|
33
|
+
- DsSwitch (Forms): On/off toggle (accent track when on). **Presentational only**: it reflects the
|
|
34
|
+
- DsTextarea (Forms): Multi-line text field — the DS "Textarea", sibling of `DsInput` with the same
|
|
35
|
+
- DsMenuItem (Navigation): Sidebar navigation row: an icon with an optional label, usable full-width or collapsed to
|
|
36
|
+
- DsWizardStepper (Navigation): Numbered multi-step flow: a row of step chips (completed / active / incomplete / neutral)
|
|
37
|
+
|
|
38
|
+
## Full documentation
|
|
39
|
+
|
|
40
|
+
- [llms-full.txt](./llms-full.txt): every component in full detail.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesql/sql_components_vue3",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Librería de componentes Vue 3 (SalesQL)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"dist",
|
|
19
|
-
"README.md"
|
|
19
|
+
"README.md",
|
|
20
|
+
"llms.txt",
|
|
21
|
+
"llms-full.txt"
|
|
20
22
|
],
|
|
21
23
|
"sideEffects": [
|
|
22
24
|
"**/*.css",
|
|
@@ -59,7 +61,8 @@
|
|
|
59
61
|
},
|
|
60
62
|
"homepage": "https://github.com/salesql/salesql-components-library-vue3#readme",
|
|
61
63
|
"scripts": {
|
|
62
|
-
"build": "vite build && vue-tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
64
|
+
"build": "pnpm docs:generate && vite build && vue-tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
65
|
+
"docs:generate": "node scripts/generate-llms-docs.mjs",
|
|
63
66
|
"stories": "histoire dev",
|
|
64
67
|
"build:stories": "histoire build",
|
|
65
68
|
"typecheck": "vue-tsc --noEmit",
|