@caipira/tamandua 0.0.10 → 0.0.12

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.
@@ -0,0 +1 @@
1
+ .transparent-button[data-v-8639b950]:hover{background-color:rgb(from var(--caipira-primary) r g b / 45%)}
@@ -0,0 +1 @@
1
+ .drawer[data-v-8ed9a90a]{box-shadow:#0003 0 8px 10px -5px,#00000024 0 16px 24px 2px,#0000001f 0 6px 30px 5px}
@@ -0,0 +1 @@
1
+ svg circle[data-v-ac99d00a]{transition:stroke-dashoffset 1s linear}
@@ -0,0 +1 @@
1
+ svg rect[data-v-9bed3d42]{transition:width .3s linear}
package/dist/Table.css ADDED
@@ -0,0 +1 @@
1
+ table>thead>tr[data-v-e24c44aa]{border-top:1px solid var(--border-color)}table th[data-v-e24c44aa],table td[data-v-e24c44aa]{border-bottom:1px solid var(--border-color)}
@@ -1,9 +1,9 @@
1
1
  import { FormDataTypes, FormSubmissionFormat } from '../enums/form.js';
2
+ import { Icon } from '../enums/ui.js';
2
3
  import { AddressModel, Country } from './address.js';
3
4
  import { APISearchFilters } from './api.js';
4
5
  import { Pagination } from './ui.js';
5
6
  import { Website } from './website.js';
6
- import { Icon } from '../enums/ui.js';
7
7
 
8
8
  export type SelectValuePrimitives = string | number;
9
9
  export type SelectValue = SelectValuePrimitives | Array<SelectValuePrimitives>;
@@ -21,23 +21,6 @@ export type TableColumn = {
21
21
  } | {
22
22
  property: string;
23
23
  });
24
- export type TableEditorColumn = {
25
- title?: string;
26
- /** Property name, defaults to slot name */
27
- property?: string;
28
- /** Input type for editing column */
29
- type?: "text" | "select" | "price";
30
- /** Show/Hide column */
31
- visible?: boolean;
32
- } & ({
33
- slot: string;
34
- } | {
35
- property: string;
36
- });
37
- export type TableEditorRow = {
38
- uuid: string;
39
- [prop: string]: any;
40
- };
41
24
  export type Tab = {
42
25
  title?: string;
43
26
  slot?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caipira/tamandua",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "private": false,
5
5
  "description": "UI library for the Caipira ecosystem",
6
6
  "license": "GPL-3.0-only",
@@ -43,7 +43,7 @@
43
43
  ".": "./dist/tamandua.js",
44
44
  "./components": "./dist/components.js",
45
45
  "./composables": "./dist/composables.js",
46
- "./form": "./dist/form.js",
46
+ "./form": "./dist/form2.js",
47
47
  "./date": "./dist/date.js",
48
48
  "./plugins": "./dist/plugins.js",
49
49
  "./enums": "./dist/enums.js",
@@ -52,8 +52,8 @@
52
52
  },
53
53
  "files": [
54
54
  "dist/*.js",
55
+ "dist/*.css",
55
56
  "dist/types",
56
- "dist/index.css",
57
57
  "volar.d.ts",
58
58
  "README.md"
59
59
  ],