hamzus-ui 0.0.27 → 0.0.30
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/index.d.ts
CHANGED
|
@@ -20,9 +20,10 @@ export { default as Input } from "./src/components/hamzus-ui/Input/Input.svelte"
|
|
|
20
20
|
export { default as DatePicker } from "./src/components/hamzus-ui/DatePicker/DatePicker.svelte"
|
|
21
21
|
export { default as TextArea } from "./src/components/hamzus-ui/TextArea/TextArea.svelte"
|
|
22
22
|
export { default as Checkbox } from "./src/components/hamzus-ui/Checkboxes/Checkbox/Checkbox.svelte"
|
|
23
|
-
export { default as Switch } from "./src/components/hamzus-ui/
|
|
23
|
+
export { default as Switch } from "./src/components/hamzus-ui/Switch/Switch.svelte"
|
|
24
24
|
|
|
25
25
|
// data
|
|
26
|
+
export * as Table from "./src/components/hamzus-ui/Table"
|
|
26
27
|
export { default as ProgressCircle } from "./src/components/hamzus-ui/ProgressCircle/ProgressCircle.svelte"
|
|
27
28
|
|
|
28
29
|
|
package/index.js
CHANGED
|
@@ -16,8 +16,9 @@ export { default as Input } from "./src/components/hamzus-ui/Input/Input.svelte"
|
|
|
16
16
|
export { default as DatePicker } from "./src/components/hamzus-ui/DatePicker/DatePicker.svelte"
|
|
17
17
|
export { default as TextArea } from "./src/components/hamzus-ui/TextArea/TextArea.svelte"
|
|
18
18
|
export { default as Checkbox } from "./src/components/hamzus-ui/Checkboxes/Checkbox/Checkbox.svelte"
|
|
19
|
-
export { default as Switch } from "./src/components/hamzus-ui/
|
|
19
|
+
export { default as Switch } from "./src/components/hamzus-ui/Switch/Switch.svelte"
|
|
20
20
|
// data
|
|
21
|
+
export * as Table from "./src/components/hamzus-ui/Table"
|
|
21
22
|
export { default as ProgressCircle } from "./src/components/hamzus-ui/ProgressCircle/ProgressCircle.svelte"
|
|
22
23
|
|
|
23
24
|
export * as DropdownMenu from "./src/components/hamzus-ui/DropdownMenu"
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import * as Popover from '../Popover';
|
|
7
7
|
import Input from '../Input/Input.svelte';
|
|
8
8
|
import RadioGroup from '../Radios/RadioGroup/RadioGroup.svelte';
|
|
9
|
-
import
|
|
9
|
+
import Switch from '../Switch/Switch.svelte';
|
|
10
10
|
// props
|
|
11
11
|
export let tableId = null;
|
|
12
12
|
// local var
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
style="display:flex;align-items:center;justify-content:space-between;width:100%;"
|
|
194
194
|
>
|
|
195
195
|
<h4>passer a la ligne</h4>
|
|
196
|
-
<
|
|
196
|
+
<Switch checked={column.skipLine} onChange={(newValue)=>{handleChangeSkipLine(column.name, newValue)}} size={16}></Switch>
|
|
197
197
|
</label>
|
|
198
198
|
</DropdownMenu.Button>
|
|
199
199
|
{#if column.isSortable !== false}
|
|
File without changes
|