@1771technologies/lytenyte-pro 1.0.20 → 2.0.0-dev.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/css/all-colors.css +8 -0
- package/css/components/button.css +176 -0
- package/css/components/checkbox.css +54 -0
- package/css/components/input.css +64 -0
- package/css/components/tree-view.css +108 -0
- package/css/components.css +300 -0
- package/css/cotton-candy.css +1 -0
- package/css/dark.css +1 -0
- package/css/design.css +1 -0
- package/css/fonts.css +1 -0
- package/css/grid-full.css +3 -0
- package/css/grid.css +81 -0
- package/css/light-dark.css +3 -0
- package/css/light.css +1 -0
- package/css/pill-manager.css +184 -0
- package/css/shadcn-vars.css +1 -0
- package/css/shadcn.css +1 -0
- package/css/teal.css +1 -0
- package/css/term.css +1 -0
- package/css/tw.css +1 -0
- package/dist/__play__/alpha.play.d.ts +3 -0
- package/dist/__play__/alpha.play.js +56 -0
- package/dist/__play__/basic-server-data/data.d.ts +10 -0
- package/dist/__play__/basic-server-data/data.js +17746 -0
- package/dist/__play__/basic-server-data/server.d.ts +36 -0
- package/dist/__play__/basic-server-data/server.js +105 -0
- package/dist/__play__/buttons.play.d.ts +4 -0
- package/dist/__play__/buttons.play.js +7 -0
- package/dist/__play__/inputs.play.d.ts +3 -0
- package/dist/__play__/inputs.play.js +13 -0
- package/dist/__play__/server.play.d.ts +3 -0
- package/dist/__play__/server.play.js +66 -0
- package/dist/__play__/tree.play.d.ts +3 -0
- package/dist/__play__/tree.play.js +47 -0
- package/dist/cell-selection/adjust-rect-for-row-and-cell-span.d.ts +2 -2
- package/dist/cell-selection/adjust-rect-for-row-and-cell-span.js +5 -5
- package/dist/cell-selection/are-rects-equal.d.ts +1 -1
- package/dist/cell-selection/bound-selection-rect.d.ts +3 -2
- package/dist/cell-selection/bound-selection-rect.js +2 -3
- package/dist/cell-selection/cell-selection-containers.js +32 -37
- package/dist/cell-selection/cell-selection-driver/cell-selection-driver.js +279 -0
- package/dist/cell-selection/cell-selection-driver/use-cell-focus-change.d.ts +6 -0
- package/dist/cell-selection/cell-selection-driver/use-cell-focus-change.js +34 -0
- package/dist/cell-selection/cell-style-row.d.ts +1 -1
- package/dist/cell-selection/cell-style-row.js +27 -32
- package/dist/cell-selection/data-rect-from-cell-position.d.ts +3 -0
- package/dist/cell-selection/data-rect-from-cell-position.js +17 -0
- package/dist/cell-selection/deselect-rect-range.d.ts +1 -1
- package/dist/cell-selection/expand-selection-down.d.ts +3 -0
- package/dist/cell-selection/expand-selection-down.js +78 -0
- package/dist/cell-selection/expand-selection-end.d.ts +3 -0
- package/dist/cell-selection/expand-selection-end.js +76 -0
- package/dist/cell-selection/expand-selection-start.d.ts +3 -0
- package/dist/cell-selection/expand-selection-start.js +73 -0
- package/dist/cell-selection/expand-selection-up.d.ts +3 -0
- package/dist/cell-selection/expand-selection-up.js +74 -0
- package/dist/cell-selection/full-width-start-end-index.d.ts +2 -2
- package/dist/cell-selection/full-width-start-end-index.js +2 -3
- package/dist/cell-selection/get-root-cell.d.ts +3 -2
- package/dist/cell-selection/get-root-cell.js +2 -2
- package/dist/cell-selection/index.d.ts +0 -5
- package/dist/cell-selection/index.js +0 -5
- package/dist/cell-selection/is-bottom-rect.d.ts +2 -2
- package/dist/cell-selection/is-bottom-rect.js +1 -4
- package/dist/cell-selection/is-center-col-rect.d.ts +2 -2
- package/dist/cell-selection/is-center-col-rect.js +2 -4
- package/dist/cell-selection/is-center-rect.d.ts +2 -2
- package/dist/cell-selection/is-center-rect.js +3 -4
- package/dist/cell-selection/is-end-rect.d.ts +2 -2
- package/dist/cell-selection/is-end-rect.js +2 -3
- package/dist/cell-selection/is-fully-within-rect.d.ts +2 -0
- package/dist/cell-selection/is-fully-within-rect.js +6 -0
- package/dist/cell-selection/is-overlapping-rect.d.ts +2 -2
- package/dist/cell-selection/is-overlapping-rect.js +4 -5
- package/dist/cell-selection/is-start-rect.d.ts +2 -2
- package/dist/cell-selection/is-start-rect.js +2 -3
- package/dist/cell-selection/is-top-rect.d.ts +2 -2
- package/dist/cell-selection/is-top-rect.js +1 -2
- package/dist/cell-selection/is-within-selection-rect.d.ts +1 -1
- package/dist/cell-selection/split-cell-selection-rect.d.ts +2 -1
- package/dist/cell-selection/split-on-pivot.d.ts +1 -1
- package/dist/cell-selection/update-additive-cell-selection.d.ts +4 -5
- package/dist/cell-selection/update-additive-cell-selection.js +9 -11
- package/dist/cell-selection/use-edge-scroll.d.ts +2 -6
- package/dist/cell-selection/use-edge-scroll.js +21 -16
- package/dist/components/checkbox/checkbox.d.ts +15 -0
- package/dist/components/checkbox/checkbox.js +42 -0
- package/dist/components/checkbox/checkbox.play.d.ts +2 -0
- package/dist/components/checkbox/checkbox.play.js +6 -0
- package/dist/components/column-manager/column-manager.d.ts +13 -0
- package/dist/components/column-manager/column-manager.js +47 -0
- package/dist/components/external/clsx.d.ts +2 -0
- package/dist/components/external/clsx.js +44 -0
- package/dist/components/external/floating-ui.d.ts +268 -0
- package/dist/components/external/floating-ui.js +1802 -0
- package/dist/components/headless/dialog/arrow.d.ts +6 -0
- package/dist/components/headless/dialog/arrow.js +16 -0
- package/dist/components/headless/dialog/close.d.ts +10 -0
- package/dist/components/headless/dialog/close.js +22 -0
- package/dist/components/headless/dialog/container.d.ts +5 -0
- package/dist/components/headless/dialog/container.js +221 -0
- package/dist/components/headless/dialog/context.d.ts +32 -0
- package/dist/components/headless/dialog/context.js +3 -0
- package/dist/components/headless/dialog/description.d.ts +9 -0
- package/dist/components/headless/dialog/description.js +20 -0
- package/dist/components/headless/dialog/index.parts.d.ts +30 -0
- package/dist/components/headless/dialog/index.parts.js +17 -0
- package/dist/components/headless/dialog/root.d.ts +32 -0
- package/dist/components/headless/dialog/root.js +75 -0
- package/dist/components/headless/dialog/title.d.ts +9 -0
- package/dist/components/headless/dialog/title.js +20 -0
- package/dist/components/headless/dialog/transform-origin.d.ts +5 -0
- package/dist/components/headless/dialog/transform-origin.js +38 -0
- package/dist/components/headless/dialog/trigger.d.ts +10 -0
- package/dist/components/headless/dialog/trigger.js +24 -0
- package/dist/components/headless/dialog/use-dialog.d.ts +4 -0
- package/dist/components/headless/dialog/use-dialog.js +12 -0
- package/dist/components/headless/menu/checkbox-item.d.ts +11 -0
- package/dist/components/headless/menu/checkbox-item.js +42 -0
- package/dist/components/headless/menu/combo/combo-checkbox.d.ts +11 -0
- package/dist/components/headless/menu/combo/combo-checkbox.js +38 -0
- package/dist/components/headless/menu/combo/combo-context.d.ts +9 -0
- package/dist/components/headless/menu/combo/combo-context.js +3 -0
- package/dist/components/headless/menu/combo/combo-input.d.ts +7 -0
- package/dist/components/headless/menu/combo/combo-input.js +58 -0
- package/dist/components/headless/menu/combo/combo-menu.d.ts +5 -0
- package/dist/components/headless/menu/combo/combo-menu.js +24 -0
- package/dist/components/headless/menu/combo/combo-option.d.ts +9 -0
- package/dist/components/headless/menu/combo/combo-option.js +37 -0
- package/dist/components/headless/menu/container.d.ts +5 -0
- package/dist/components/headless/menu/container.js +19 -0
- package/dist/components/headless/menu/dom.d.ts +4 -0
- package/dist/components/headless/menu/dom.js +20 -0
- package/dist/components/headless/menu/index.d.ts +54 -0
- package/dist/components/headless/menu/index.js +39 -0
- package/dist/components/headless/menu/item/handle-vertical-navigation.d.ts +2 -0
- package/dist/components/headless/menu/item/handle-vertical-navigation.js +28 -0
- package/dist/components/headless/menu/item/item.d.ts +9 -0
- package/dist/components/headless/menu/item/item.js +45 -0
- package/dist/components/headless/menu/item/use-menu-item-events.d.ts +1 -0
- package/dist/components/headless/menu/item/use-menu-item-events.js +25 -0
- package/dist/components/headless/menu/menu-divider.d.ts +5 -0
- package/dist/components/headless/menu/menu-divider.js +6 -0
- package/dist/components/headless/menu/menu-group.d.ts +5 -0
- package/dist/components/headless/menu/menu-group.js +6 -0
- package/dist/components/headless/menu/menu-header.d.ts +5 -0
- package/dist/components/headless/menu/menu-header.js +6 -0
- package/dist/components/headless/menu/popover.d.ts +5 -0
- package/dist/components/headless/menu/popover.js +7 -0
- package/dist/components/headless/menu/radio-group/context.d.ts +11 -0
- package/dist/components/headless/menu/radio-group/context.js +7 -0
- package/dist/components/headless/menu/radio-group/radio-item.d.ts +10 -0
- package/dist/components/headless/menu/radio-group/radio-item.js +44 -0
- package/dist/components/headless/menu/submenu/submenu-context.d.ts +9 -0
- package/dist/components/headless/menu/submenu/submenu-context.js +3 -0
- package/dist/components/headless/menu/submenu/submenu-trigger.d.ts +7 -0
- package/dist/components/headless/menu/submenu/submenu-trigger.js +70 -0
- package/dist/components/headless/menu/submenu/submenu.d.ts +21 -0
- package/dist/components/headless/menu/submenu/submenu.js +55 -0
- package/dist/components/headless/menu/submenu/use-submenu-position.d.ts +5 -0
- package/dist/components/headless/menu/submenu/use-submenu-position.js +31 -0
- package/dist/components/headless/menu/use-menu.d.ts +1 -0
- package/dist/components/headless/menu/use-menu.js +52 -0
- package/dist/components/headless/popover/container.d.ts +5 -0
- package/dist/components/headless/popover/container.js +7 -0
- package/dist/components/headless/popover/context.d.ts +6 -0
- package/dist/components/headless/popover/context.js +3 -0
- package/dist/components/headless/popover/index.d.ts +30 -0
- package/dist/components/headless/popover/index.js +17 -0
- package/dist/components/headless/popover/root.d.ts +6 -0
- package/dist/components/headless/popover/root.js +8 -0
- package/dist/components/headless/popover/trigger.d.ts +7 -0
- package/dist/components/headless/popover/trigger.js +11 -0
- package/dist/components/pill-manager/container.d.ts +5 -0
- package/dist/components/pill-manager/container.js +127 -0
- package/dist/components/pill-manager/expander.d.ts +9 -0
- package/dist/components/pill-manager/expander.js +21 -0
- package/dist/components/pill-manager/icons.d.ts +12 -0
- package/dist/components/pill-manager/icons.js +35 -0
- package/dist/components/pill-manager/index.d.ts +33 -0
- package/dist/components/pill-manager/index.js +13 -0
- package/dist/components/pill-manager/item.d.ts +10 -0
- package/dist/components/pill-manager/item.js +178 -0
- package/dist/components/pill-manager/label.d.ts +10 -0
- package/dist/components/pill-manager/label.js +31 -0
- package/dist/components/pill-manager/pill-manager.play.d.ts +3 -0
- package/dist/components/pill-manager/pill-manager.play.js +73 -0
- package/dist/components/pill-manager/pill-row.context.d.ts +8 -0
- package/dist/components/pill-manager/pill-row.context.js +4 -0
- package/dist/components/pill-manager/pill-row.d.ts +12 -0
- package/dist/components/pill-manager/pill-row.js +22 -0
- package/dist/components/pill-manager/root.context.d.ts +40 -0
- package/dist/components/pill-manager/root.context.js +4 -0
- package/dist/components/pill-manager/root.d.ts +25 -0
- package/dist/components/pill-manager/root.js +33 -0
- package/dist/components/pill-manager/row-default.d.ts +3 -0
- package/dist/components/pill-manager/row-default.js +14 -0
- package/dist/components/pill-manager/types.d.ts +21 -0
- package/dist/components/row-group-cell.d.ts +13 -0
- package/dist/components/row-group-cell.js +40 -0
- package/dist/components/select-all.d.ts +12 -0
- package/dist/components/select-all.js +34 -0
- package/dist/components/smart-select/chip-context.d.ts +8 -0
- package/dist/components/smart-select/chip-context.js +4 -0
- package/dist/components/smart-select/chip-remove.d.ts +1 -0
- package/dist/components/smart-select/chip-remove.js +13 -0
- package/dist/components/smart-select/chip.d.ts +13 -0
- package/dist/components/smart-select/chip.js +79 -0
- package/dist/components/smart-select/container.d.ts +1 -0
- package/dist/components/smart-select/container.js +13 -0
- package/dist/components/smart-select/context.d.ts +31 -0
- package/dist/components/smart-select/context.js +4 -0
- package/dist/components/smart-select/index.d.ts +30 -0
- package/dist/components/smart-select/index.js +19 -0
- package/dist/components/smart-select/option.d.ts +8 -0
- package/dist/components/smart-select/option.js +36 -0
- package/dist/components/smart-select/root.d.ts +17 -0
- package/dist/components/smart-select/root.js +165 -0
- package/dist/components/smart-select/smart-select.play.d.ts +2 -0
- package/dist/components/smart-select/smart-select.play.js +36 -0
- package/dist/components/smart-select/triggers/basic-trigger.d.ts +1 -0
- package/dist/components/smart-select/triggers/basic-trigger.js +18 -0
- package/dist/components/smart-select/triggers/combo-trigger.d.ts +1 -0
- package/dist/components/smart-select/triggers/combo-trigger.js +17 -0
- package/dist/components/smart-select/triggers/is-selectable-option.d.ts +1 -0
- package/dist/components/smart-select/triggers/is-selectable-option.js +3 -0
- package/dist/components/smart-select/triggers/multi-combo-trigger.d.ts +11 -0
- package/dist/components/smart-select/triggers/multi-combo-trigger.js +38 -0
- package/dist/components/smart-select/triggers/multi-trigger.d.ts +6 -0
- package/dist/components/smart-select/triggers/multi-trigger.js +8 -0
- package/dist/components/smart-select/triggers/use-combo-controls.d.ts +9 -0
- package/dist/components/smart-select/triggers/use-combo-controls.js +145 -0
- package/dist/components/smart-select/triggers/use-trigger-controls.d.ts +5 -0
- package/dist/components/smart-select/triggers/use-trigger-controls.js +126 -0
- package/dist/components/smart-select/type.d.ts +44 -0
- package/dist/components/smart-select/use-async-options.d.ts +8 -0
- package/dist/components/smart-select/use-async-options.js +42 -0
- package/dist/components/tree-view/index.d.ts +4 -0
- package/dist/components/tree-view/index.js +2 -0
- package/dist/components/tree-view/root.d.ts +37 -0
- package/dist/components/tree-view/root.js +139 -0
- package/dist/components/tree-view/select-all.d.ts +7 -0
- package/dist/components/tree-view/select-all.js +22 -0
- package/dist/components/tree-view/tree-children.d.ts +2 -0
- package/dist/components/tree-view/tree-children.js +15 -0
- package/dist/components/tree-view/types.d.ts +31 -0
- package/dist/components/types.d.ts +4 -0
- package/dist/components/virtual-from-coordinates.d.ts +2 -0
- package/dist/components/virtual-from-coordinates.js +15 -0
- package/dist/components.d.ts +16 -0
- package/dist/components.js +11 -0
- package/dist/data-source-client/hooks/get-valid-leafs.d.ts +3 -0
- package/dist/data-source-client/hooks/get-valid-leafs.js +11 -0
- package/dist/data-source-client/hooks/use-controlled-ds-state.d.ts +13 -0
- package/dist/data-source-client/hooks/use-controlled-ds-state.js +39 -0
- package/dist/data-source-client/hooks/use-flattened-data.d.ts +18 -0
- package/dist/data-source-client/hooks/use-flattened-data.js +40 -0
- package/dist/data-source-client/hooks/use-flattened-groups.d.ts +5 -0
- package/dist/data-source-client/hooks/use-flattened-groups.js +63 -0
- package/dist/data-source-client/hooks/use-flattened-piece.d.ts +14 -0
- package/dist/data-source-client/hooks/use-flattened-piece.js +55 -0
- package/dist/data-source-client/hooks/use-group-tree/collapse-child.d.ts +2 -0
- package/dist/data-source-client/hooks/use-group-tree/collapse-child.js +11 -0
- package/dist/data-source-client/hooks/use-group-tree/collapse-last.d.ts +2 -0
- package/dist/data-source-client/hooks/use-group-tree/collapse-last.js +14 -0
- package/dist/data-source-client/hooks/use-group-tree/collapse.d.ts +2 -0
- package/dist/data-source-client/hooks/use-group-tree/collapse.js +17 -0
- package/dist/data-source-client/hooks/use-group-tree/use-group-tree.d.ts +31 -0
- package/dist/data-source-client/hooks/use-group-tree/use-group-tree.js +152 -0
- package/dist/data-source-client/hooks/use-pivot/auxiliary-functions/apply-reference-column.d.ts +2 -0
- package/dist/data-source-client/hooks/use-pivot/auxiliary-functions/apply-reference-column.js +22 -0
- package/dist/data-source-client/hooks/use-pivot/auxiliary-functions/evaluate-label-filter.d.ts +2 -0
- package/dist/data-source-client/hooks/use-pivot/auxiliary-functions/evaluate-label-filter.js +9 -0
- package/dist/data-source-client/hooks/use-pivot/auxiliary-functions/pivot-paths-with-totals.d.ts +18 -0
- package/dist/data-source-client/hooks/use-pivot/auxiliary-functions/pivot-paths-with-totals.js +140 -0
- package/dist/data-source-client/hooks/use-pivot/auxiliary-functions/pivot-paths.d.ts +4 -0
- package/dist/data-source-client/hooks/use-pivot/auxiliary-functions/pivot-paths.js +31 -0
- package/dist/data-source-client/hooks/use-pivot/use-agg-model.d.ts +4 -0
- package/dist/data-source-client/hooks/use-pivot/use-agg-model.js +45 -0
- package/dist/data-source-client/hooks/use-pivot/use-filtered-data.d.ts +2 -0
- package/dist/data-source-client/hooks/use-pivot/use-filtered-data.js +18 -0
- package/dist/data-source-client/hooks/use-pivot/use-pivot-columns.d.ts +14 -0
- package/dist/data-source-client/hooks/use-pivot/use-pivot-columns.js +151 -0
- package/dist/data-source-client/hooks/use-pivot/use-pivot-data.d.ts +32 -0
- package/dist/data-source-client/hooks/use-pivot/use-pivot-data.js +83 -0
- package/dist/data-source-client/hooks/use-pivot/use-pivot-group-fn.d.ts +4 -0
- package/dist/data-source-client/hooks/use-pivot/use-pivot-group-fn.js +23 -0
- package/dist/data-source-client/hooks/use-pivot/use-pivot-state.d.ts +16 -0
- package/dist/data-source-client/hooks/use-pivot/use-pivot-state.js +40 -0
- package/dist/data-source-client/use-client-data-source.d.ts +91 -0
- package/dist/data-source-client/use-client-data-source.js +169 -0
- package/dist/data-source-server/async-tree/apply-delete-action-to-tree.d.ts +2 -0
- package/dist/data-source-server/async-tree/apply-set-action-to-tree.d.ts +2 -0
- package/dist/data-source-server/async-tree/apply-set-action-to-tree.js +26 -0
- package/dist/data-source-server/async-tree/data-integrity-checks/check-set-action-item-keys-are-unique.d.ts +2 -0
- package/dist/data-source-server/async-tree/data-integrity-checks/check-set-action-item-keys-are-unique.js +20 -0
- package/dist/data-source-server/async-tree/data-integrity-checks/check-set-action-item-keys-are-valid.d.ts +2 -0
- package/dist/data-source-server/async-tree/data-integrity-checks/check-set-action-item-keys-are-valid.js +12 -0
- package/dist/data-source-server/async-tree/data-integrity-checks/check-set-action-item-keys-fit.d.ts +2 -0
- package/dist/data-source-server/async-tree/data-integrity-checks/check-set-action-item-kinds.d.ts +2 -0
- package/dist/data-source-server/async-tree/data-integrity-checks/check-set-action-item-kinds.js +12 -0
- package/dist/data-source-server/async-tree/data-integrity-checks/check-set-action.d.ts +2 -0
- package/dist/data-source-server/async-tree/data-integrity-checks/check-set-action.js +24 -0
- package/dist/data-source-server/async-tree/get-parent-node-by-path.d.ts +2 -0
- package/dist/data-source-server/async-tree/is-set-action-a-no-op-on-node.d.ts +2 -0
- package/dist/data-source-server/async-tree/make-async-tree.d.ts +2 -0
- package/dist/data-source-server/async-tree/make-async-tree.js +64 -0
- package/dist/data-source-server/async-tree/maybe-apply-parent-remove-self.d.ts +2 -0
- package/dist/data-source-server/async-tree/maybe-apply-resize.d.ts +2 -0
- package/dist/data-source-server/async-tree/maybe-apply-set-action-items.d.ts +2 -0
- package/dist/data-source-server/async-tree/maybe-apply-set-action-items.js +54 -0
- package/dist/data-source-server/async-tree/types.d.ts +70 -0
- package/dist/data-source-server/range-tree/range-tree.d.ts +66 -0
- package/dist/data-source-server/server-data.d.ts +73 -0
- package/dist/data-source-server/server-data.js +553 -0
- package/dist/data-source-server/source/use-on-rows-updated.d.ts +4 -0
- package/dist/data-source-server/source/use-on-rows-updated.js +29 -0
- package/dist/data-source-server/source/use-on-view-change.d.ts +3 -0
- package/dist/data-source-server/source/use-on-view-change.js +13 -0
- package/dist/data-source-server/source/use-row-add.d.ts +3 -0
- package/dist/data-source-server/source/use-row-add.js +36 -0
- package/dist/data-source-server/source/use-row-by-id.d.ts +2 -0
- package/dist/data-source-server/source/use-row-by-id.js +8 -0
- package/dist/data-source-server/source/use-row-by-index.d.ts +9 -0
- package/dist/data-source-server/source/use-row-by-index.js +89 -0
- package/dist/data-source-server/source/use-row-children.d.ts +2 -0
- package/dist/data-source-server/source/use-row-children.js +16 -0
- package/dist/data-source-server/source/use-row-delete.d.ts +3 -0
- package/dist/data-source-server/source/use-row-delete.js +39 -0
- package/dist/data-source-server/source/use-row-id-to-row-index.d.ts +2 -0
- package/dist/data-source-server/source/use-row-id-to-row-index.js +7 -0
- package/dist/data-source-server/source/use-row-index-to-row-id.d.ts +2 -0
- package/dist/data-source-server/source/use-row-index-to-row-id.js +7 -0
- package/dist/data-source-server/source/use-row-leafs.d.ts +2 -0
- package/dist/data-source-server/source/use-row-leafs.js +20 -0
- package/dist/data-source-server/source/use-row-parents.d.ts +2 -0
- package/dist/data-source-server/source/use-row-parents.js +16 -0
- package/dist/data-source-server/source/use-row-siblings.d.ts +2 -0
- package/dist/data-source-server/source/use-row-siblings.js +15 -0
- package/dist/data-source-server/source/use-rows-between.d.ts +2 -0
- package/dist/data-source-server/source/use-rows-between.js +20 -0
- package/dist/data-source-server/source/use-source-state.d.ts +28 -0
- package/dist/data-source-server/source/use-source-state.js +47 -0
- package/dist/data-source-server/source/use-source.d.ts +5 -0
- package/dist/data-source-server/source/use-source.js +66 -0
- package/dist/data-source-server/types.d.ts +42 -0
- package/dist/data-source-server/use-server-data-source.d.ts +51 -0
- package/dist/data-source-server/use-server-data-source.js +192 -0
- package/dist/data-source-server/utils/get-node-depth.d.ts +2 -0
- package/dist/data-source-server/utils/get-node-path.d.ts +2 -0
- package/dist/data-source-tree/source/use-controlled-state.d.ts +8 -0
- package/dist/data-source-tree/source/use-controlled-state.js +21 -0
- package/dist/data-source-tree/source/use-flattened.d.ts +17 -0
- package/dist/data-source-tree/source/use-flattened.js +65 -0
- package/dist/data-source-tree/source/use-on-rows-updated.d.ts +3 -0
- package/dist/data-source-tree/source/use-on-rows-updated.js +49 -0
- package/dist/data-source-tree/source/use-row-by-id.d.ts +2 -0
- package/dist/data-source-tree/source/use-row-by-id.js +7 -0
- package/dist/data-source-tree/source/use-row-children.d.ts +2 -0
- package/dist/data-source-tree/source/use-row-children.js +11 -0
- package/dist/data-source-tree/source/use-row-leafs.d.ts +2 -0
- package/dist/data-source-tree/source/use-row-leafs.js +20 -0
- package/dist/data-source-tree/source/use-row-parents.d.ts +2 -0
- package/dist/data-source-tree/source/use-row-parents.js +16 -0
- package/dist/data-source-tree/source/use-row-siblings.d.ts +2 -0
- package/dist/data-source-tree/source/use-row-siblings.js +12 -0
- package/dist/data-source-tree/source/use-tree.d.ts +3 -0
- package/dist/data-source-tree/source/use-tree.js +59 -0
- package/dist/data-source-tree/types.d.ts +16 -0
- package/dist/data-source-tree/use-tree-data-source.d.ts +41 -0
- package/dist/data-source-tree/use-tree-data-source.js +101 -0
- package/dist/data-source-tree/utils/is-object.d.ts +1 -0
- package/dist/data-source-tree/utils/is-object.js +3 -0
- package/dist/hooks/use-slot/get-element-ref.d.ts +2 -0
- package/dist/hooks/use-slot/get-element-ref.js +20 -0
- package/dist/hooks/use-slot/index.d.ts +3 -0
- package/dist/hooks/use-slot/index.js +1 -0
- package/dist/hooks/use-slot/merge-props.d.ts +4 -0
- package/dist/hooks/use-slot/merge-props.js +27 -0
- package/dist/hooks/use-slot/react-version.d.ts +3 -0
- package/dist/hooks/use-slot/react-version.js +5 -0
- package/dist/hooks/use-slot/types.d.ts +4 -0
- package/dist/hooks/use-slot/use-slot.d.ts +12 -0
- package/dist/hooks/use-slot/use-slot.js +28 -0
- package/dist/hooks/use-transitioned-open.d.ts +2 -0
- package/dist/hooks/use-transitioned-open.js +50 -0
- package/dist/index.d.ts +120 -13
- package/dist/index.js +22 -13
- package/dist/license/md5-hash.d.ts +1 -1
- package/dist/license/md5-hash.js +1 -1
- package/dist/root/context.d.ts +16 -0
- package/dist/root/context.js +4 -0
- package/dist/root/hooks/use-pro-api.d.ts +2 -0
- package/dist/root/hooks/use-pro-api.js +8 -0
- package/dist/root/root.d.ts +15 -0
- package/dist/root/root.js +112 -0
- package/dist/types/api.d.ts +100 -0
- package/dist/types/api.js +1 -0
- package/dist/types/column.d.ts +73 -0
- package/dist/types/column.js +1 -0
- package/dist/types/events.d.ts +56 -0
- package/dist/types/events.js +1 -0
- package/dist/types/grid.d.ts +47 -0
- package/dist/types/grid.js +1 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/index.js +1 -0
- package/dist/types/props.d.ts +187 -0
- package/dist/types/props.js +1 -0
- package/package.json +29 -16
- package/dist/+types.d.ts +0 -6177
- package/dist/__play__/cell-selections/cell-selection.play.d.ts +0 -5
- package/dist/__play__/cell-selections/cell-selection.play.js +0 -80
- package/dist/__play__/filter-select/filter-select.play.d.ts +0 -4
- package/dist/__play__/filter-select/filter-select.play.js +0 -76
- package/dist/__play__/test-utils/bank-data-smaller.d.ts +0 -19
- package/dist/__play__/test-utils/bank-data-smaller.js +0 -252
- package/dist/__play__/test-utils/row-handler.d.ts +0 -6
- package/dist/__play__/test-utils/row-handler.js +0 -32
- package/dist/cell-selection/cell-selection-driver.js +0 -289
- package/dist/cell-selection/expand-cell-selection-down.d.ts +0 -5
- package/dist/cell-selection/expand-cell-selection-down.js +0 -39
- package/dist/cell-selection/expand-cell-selection-end.d.ts +0 -5
- package/dist/cell-selection/expand-cell-selection-end.js +0 -40
- package/dist/cell-selection/expand-cell-selection-start.d.ts +0 -5
- package/dist/cell-selection/expand-cell-selection-start.js +0 -39
- package/dist/cell-selection/expand-cell-selection-up.d.ts +0 -5
- package/dist/cell-selection/expand-cell-selection-up.js +0 -39
- package/dist/column-manager/branch-lookup-context.d.ts +0 -4
- package/dist/column-manager/branch-lookup-context.js +0 -3
- package/dist/column-manager/branch.d.ts +0 -15
- package/dist/column-manager/branch.js +0 -54
- package/dist/column-manager/column-manager.d.ts +0 -13
- package/dist/column-manager/column-manager.js +0 -18
- package/dist/column-manager/context.d.ts +0 -7
- package/dist/column-manager/context.js +0 -3
- package/dist/column-manager/label.d.ts +0 -5
- package/dist/column-manager/label.js +0 -18
- package/dist/column-manager/leaf.d.ts +0 -6
- package/dist/column-manager/leaf.js +0 -58
- package/dist/column-manager/move-handle.d.ts +0 -5
- package/dist/column-manager/move-handle.js +0 -72
- package/dist/column-manager/panel.d.ts +0 -1
- package/dist/column-manager/panel.js +0 -2
- package/dist/column-manager/root.d.ts +0 -8
- package/dist/column-manager/root.js +0 -7
- package/dist/column-manager/use-column-manager.d.ts +0 -10
- package/dist/column-manager/use-column-manager.js +0 -24
- package/dist/column-manager/use-columns-from-context.d.ts +0 -3
- package/dist/column-manager/use-columns-from-context.js +0 -23
- package/dist/column-manager/visibility-checkbox.d.ts +0 -9
- package/dist/column-manager/visibility-checkbox.js +0 -30
- package/dist/context.d.ts +0 -11
- package/dist/context.js +0 -5
- package/dist/filter-selects/apply.d.ts +0 -7
- package/dist/filter-selects/apply.js +0 -22
- package/dist/filter-selects/clear.d.ts +0 -7
- package/dist/filter-selects/clear.js +0 -22
- package/dist/filter-selects/context.d.ts +0 -13
- package/dist/filter-selects/context.js +0 -3
- package/dist/filter-selects/filter-combinator.d.ts +0 -10
- package/dist/filter-selects/filter-combinator.js +0 -19
- package/dist/filter-selects/filter-row-context.d.ts +0 -30
- package/dist/filter-selects/filter-row-context.js +0 -3
- package/dist/filter-selects/filter-row.d.ts +0 -13
- package/dist/filter-selects/filter-row.js +0 -118
- package/dist/filter-selects/index.d.ts +0 -22
- package/dist/filter-selects/index.js +0 -20
- package/dist/filter-selects/is-complete-filter.d.ts +0 -2
- package/dist/filter-selects/is-complete-filter.js +0 -5
- package/dist/filter-selects/operator-select.d.ts +0 -14
- package/dist/filter-selects/operator-select.js +0 -25
- package/dist/filter-selects/options.d.ts +0 -9
- package/dist/filter-selects/options.js +0 -100
- package/dist/filter-selects/reset.d.ts +0 -7
- package/dist/filter-selects/reset.js +0 -22
- package/dist/filter-selects/root.d.ts +0 -14
- package/dist/filter-selects/root.js +0 -5
- package/dist/filter-selects/to-filter-item.d.ts +0 -3
- package/dist/filter-selects/to-filter-item.js +0 -7
- package/dist/filter-selects/use-filter-select.d.ts +0 -38
- package/dist/filter-selects/use-filter-select.js +0 -167
- package/dist/filter-selects/value-input.d.ts +0 -12
- package/dist/filter-selects/value-input.js +0 -27
- package/dist/filter-tree/branch.d.ts +0 -13
- package/dist/filter-tree/branch.js +0 -21
- package/dist/filter-tree/context.d.ts +0 -27
- package/dist/filter-tree/context.js +0 -5
- package/dist/filter-tree/filter-tree.d.ts +0 -14
- package/dist/filter-tree/filter-tree.js +0 -18
- package/dist/filter-tree/hooks/use-filter-tree.d.ts +0 -38
- package/dist/filter-tree/hooks/use-filter-tree.js +0 -101
- package/dist/filter-tree/hooks/use-tree-item.d.ts +0 -8
- package/dist/filter-tree/hooks/use-tree-item.js +0 -116
- package/dist/filter-tree/inclusion-checkbox.d.ts +0 -9
- package/dist/filter-tree/inclusion-checkbox.js +0 -14
- package/dist/filter-tree/label.d.ts +0 -5
- package/dist/filter-tree/label.js +0 -18
- package/dist/filter-tree/leaf.d.ts +0 -6
- package/dist/filter-tree/leaf.js +0 -14
- package/dist/filter-tree/root.d.ts +0 -13
- package/dist/filter-tree/root.js +0 -30
- package/dist/grid/cell.d.ts +0 -6
- package/dist/grid/cell.js +0 -3
- package/dist/grid/dialog-driver.d.ts +0 -1
- package/dist/grid/dialog-driver.js +0 -21
- package/dist/grid/header-cell.d.ts +0 -10
- package/dist/grid/header-cell.js +0 -3
- package/dist/grid/header-group-cell.d.ts +0 -6
- package/dist/grid/header-group-cell.js +0 -3
- package/dist/grid/header-row.d.ts +0 -5
- package/dist/grid/header-row.js +0 -2
- package/dist/grid/header.d.ts +0 -1
- package/dist/grid/header.js +0 -2
- package/dist/grid/popover-driver.d.ts +0 -1
- package/dist/grid/popover-driver.js +0 -21
- package/dist/grid/root.d.ts +0 -8
- package/dist/grid/root.js +0 -37
- package/dist/grid/row-full-width.d.ts +0 -9
- package/dist/grid/row-full-width.js +0 -3
- package/dist/grid/row.d.ts +0 -8
- package/dist/grid/row.js +0 -3
- package/dist/grid/rows-container.d.ts +0 -1
- package/dist/grid/rows-container.js +0 -2
- package/dist/grid/rows-sections.d.ts +0 -3
- package/dist/grid/rows-sections.js +0 -13
- package/dist/grid/viewport.d.ts +0 -1
- package/dist/grid/viewport.js +0 -9
- package/dist/grid-box/+types.d.ts +0 -15
- package/dist/grid-box/context.d.ts +0 -9
- package/dist/grid-box/context.js +0 -3
- package/dist/grid-box/grid-box.d.ts +0 -12
- package/dist/grid-box/grid-box.js +0 -14
- package/dist/grid-box/item.d.ts +0 -10
- package/dist/grid-box/item.js +0 -62
- package/dist/grid-box/panel.d.ts +0 -1
- package/dist/grid-box/panel.js +0 -9
- package/dist/grid-box/root.d.ts +0 -9
- package/dist/grid-box/root.js +0 -8
- package/dist/grid-box/use-aggregation-box-items.d.ts +0 -18
- package/dist/grid-box/use-aggregation-box-items.js +0 -61
- package/dist/grid-box/use-column-box-items.d.ts +0 -34
- package/dist/grid-box/use-column-box-items.js +0 -78
- package/dist/grid-box/use-row-group-box-items.d.ts +0 -18
- package/dist/grid-box/use-row-group-box-items.js +0 -169
- package/dist/grid-provider/context.d.ts +0 -5
- package/dist/grid-provider/context.js +0 -2
- package/dist/grid-provider/provider.d.ts +0 -3
- package/dist/grid-provider/provider.js +0 -2
- package/dist/grid-provider/use-grid.d.ts +0 -3
- package/dist/grid-provider/use-grid.js +0 -3
- package/dist/grid.d.ts +0 -18
- package/dist/grid.js +0 -28
- package/dist/icons/index.d.ts +0 -1
- package/dist/icons/index.js +0 -1
- package/dist/listbox/context.d.ts +0 -6
- package/dist/listbox/context.js +0 -3
- package/dist/listbox/item.d.ts +0 -1
- package/dist/listbox/item.js +0 -25
- package/dist/listbox/panel.d.ts +0 -1
- package/dist/listbox/panel.js +0 -50
- package/dist/listbox/root.d.ts +0 -6
- package/dist/listbox/root.js +0 -12
- package/dist/row-data-source-client/+constants.d.ts +0 -2
- package/dist/row-data-source-client/+constants.js +0 -2
- package/dist/row-data-source-client/+types.d.ts +0 -27
- package/dist/row-data-source-client/built-ins/avg.d.ts +0 -10
- package/dist/row-data-source-client/built-ins/avg.js +0 -16
- package/dist/row-data-source-client/built-ins/built-ins.d.ts +0 -44
- package/dist/row-data-source-client/built-ins/built-ins.js +0 -44
- package/dist/row-data-source-client/built-ins/count.d.ts +0 -10
- package/dist/row-data-source-client/built-ins/count.js +0 -16
- package/dist/row-data-source-client/built-ins/first.d.ts +0 -10
- package/dist/row-data-source-client/built-ins/first.js +0 -12
- package/dist/row-data-source-client/built-ins/group.d.ts +0 -1
- package/dist/row-data-source-client/built-ins/group.js +0 -3
- package/dist/row-data-source-client/built-ins/last.d.ts +0 -10
- package/dist/row-data-source-client/built-ins/last.js +0 -12
- package/dist/row-data-source-client/built-ins/max.d.ts +0 -11
- package/dist/row-data-source-client/built-ins/max.js +0 -25
- package/dist/row-data-source-client/built-ins/min.d.ts +0 -11
- package/dist/row-data-source-client/built-ins/min.js +0 -25
- package/dist/row-data-source-client/built-ins/sum.d.ts +0 -10
- package/dist/row-data-source-client/built-ins/sum.js +0 -21
- package/dist/row-data-source-client/filter/+types.d.ts +0 -23
- package/dist/row-data-source-client/filter/compute-filtered-rows.d.ts +0 -2
- package/dist/row-data-source-client/filter/compute-filtered-rows.js +0 -109
- package/dist/row-data-source-client/pivots/create-agg-model.d.ts +0 -6
- package/dist/row-data-source-client/pivots/create-agg-model.js +0 -13
- package/dist/row-data-source-client/pivots/create-pivot-columns-from-paths.d.ts +0 -2
- package/dist/row-data-source-client/pivots/create-pivot-columns-from-paths.js +0 -50
- package/dist/row-data-source-client/pivots/create-pivot-columns.d.ts +0 -2
- package/dist/row-data-source-client/pivots/create-pivot-columns.js +0 -22
- package/dist/row-data-source-client/pivots/create-pivot-tree.d.ts +0 -2
- package/dist/row-data-source-client/pivots/create-pivot-tree.js +0 -23
- package/dist/row-data-source-client/tree/client-tree.d.ts +0 -18
- package/dist/row-data-source-client/tree/client-tree.js +0 -76
- package/dist/row-data-source-client/tree/evaluator-aggregation.d.ts +0 -2
- package/dist/row-data-source-client/tree/evaluator-aggregation.js +0 -8
- package/dist/row-data-source-client/tree/evaluator-group.d.ts +0 -2
- package/dist/row-data-source-client/tree/evaluator-group.js +0 -9
- package/dist/row-data-source-client/tree/traverse.d.ts +0 -2
- package/dist/row-data-source-client/tree/traverse.js +0 -22
- package/dist/row-data-source-client/use-client-data-source-paginated.d.ts +0 -10
- package/dist/row-data-source-client/use-client-data-source-paginated.js +0 -573
- package/dist/row-data-source-client/use-client-data-source.d.ts +0 -10
- package/dist/row-data-source-client/use-client-data-source.js +0 -667
- package/dist/row-data-source-client/use-client-tree-data-source.d.ts +0 -9
- package/dist/row-data-source-client/use-client-tree-data-source.js +0 -512
- package/dist/row-data-source-server/async-tree/+types.async-tree.d.ts +0 -59
- package/dist/row-data-source-server/async-tree/apply-delete-action-to-tree.d.ts +0 -2
- package/dist/row-data-source-server/async-tree/apply-set-action-to-tree.d.ts +0 -2
- package/dist/row-data-source-server/async-tree/apply-set-action-to-tree.js +0 -36
- package/dist/row-data-source-server/async-tree/check-set-action-item-keys-are-unique.d.ts +0 -2
- package/dist/row-data-source-server/async-tree/check-set-action-item-keys-are-unique.js +0 -24
- package/dist/row-data-source-server/async-tree/check-set-action-item-keys-are-valid.d.ts +0 -2
- package/dist/row-data-source-server/async-tree/check-set-action-item-keys-are-valid.js +0 -14
- package/dist/row-data-source-server/async-tree/check-set-action-item-keys-fit.d.ts +0 -2
- package/dist/row-data-source-server/async-tree/check-set-action-item-kinds.d.ts +0 -2
- package/dist/row-data-source-server/async-tree/check-set-action-item-kinds.js +0 -14
- package/dist/row-data-source-server/async-tree/get-parent-node-by-path.d.ts +0 -2
- package/dist/row-data-source-server/async-tree/is-set-action-a-no-op-on-node.d.ts +0 -2
- package/dist/row-data-source-server/async-tree/make-async-tree.d.ts +0 -2
- package/dist/row-data-source-server/async-tree/make-async-tree.js +0 -19
- package/dist/row-data-source-server/async-tree/maybe-apply-parent-remove-self.d.ts +0 -2
- package/dist/row-data-source-server/async-tree/maybe-apply-resize.d.ts +0 -2
- package/dist/row-data-source-server/async-tree/maybe-apply-set-action-items.d.ts +0 -2
- package/dist/row-data-source-server/async-tree/maybe-apply-set-action-items.js +0 -52
- package/dist/row-data-source-server/range-tree/range-tree.d.ts +0 -66
- package/dist/row-data-source-server/server-data.d.ts +0 -70
- package/dist/row-data-source-server/server-data.js +0 -519
- package/dist/row-data-source-server/use-server-data-source.d.ts +0 -3
- package/dist/row-data-source-server/use-server-data-source.js +0 -413
- package/dist/row-data-source-server/utils/get-node-depth.d.ts +0 -2
- package/dist/row-data-source-server/utils/get-node-path.d.ts +0 -2
- package/dist/sort-manager/+types.d.ts +0 -13
- package/dist/sort-manager/context.d.ts +0 -14
- package/dist/sort-manager/context.js +0 -5
- package/dist/sort-manager/hooks/use-sort-manager.d.ts +0 -15
- package/dist/sort-manager/hooks/use-sort-manager.js +0 -56
- package/dist/sort-manager/hooks/use-sort-row-item.d.ts +0 -51
- package/dist/sort-manager/hooks/use-sort-row-item.js +0 -145
- package/dist/sort-manager/hooks/use-sortable-column-items.d.ts +0 -5
- package/dist/sort-manager/hooks/use-sortable-column-items.js +0 -13
- package/dist/sort-manager/root.d.ts +0 -3
- package/dist/sort-manager/root.js +0 -14
- package/dist/sort-manager/sort-add.d.ts +0 -8
- package/dist/sort-manager/sort-add.js +0 -14
- package/dist/sort-manager/sort-apply.d.ts +0 -7
- package/dist/sort-manager/sort-apply.js +0 -24
- package/dist/sort-manager/sort-cancel.d.ts +0 -7
- package/dist/sort-manager/sort-cancel.js +0 -27
- package/dist/sort-manager/sort-clear.d.ts +0 -7
- package/dist/sort-manager/sort-clear.js +0 -22
- package/dist/sort-manager/sort-column-select.d.ts +0 -10
- package/dist/sort-manager/sort-column-select.js +0 -20
- package/dist/sort-manager/sort-direction-select.d.ts +0 -10
- package/dist/sort-manager/sort-direction-select.js +0 -24
- package/dist/sort-manager/sort-manager.d.ts +0 -16
- package/dist/sort-manager/sort-manager.js +0 -26
- package/dist/sort-manager/sort-remove.d.ts +0 -7
- package/dist/sort-manager/sort-remove.js +0 -14
- package/dist/sort-manager/sort-row.d.ts +0 -5
- package/dist/sort-manager/sort-row.js +0 -7
- package/dist/sort-manager/sort-rows.d.ts +0 -1
- package/dist/sort-manager/sort-rows.js +0 -6
- package/dist/sort-manager/sort-value-select.d.ts +0 -11
- package/dist/sort-manager/sort-value-select.js +0 -25
- package/dist/sort-manager/utils/sort-item-to-sort-model.d.ts +0 -3
- package/dist/sort-manager/utils/sort-item-to-sort-model.js +0 -62
- package/dist/sort-manager/utils/sort-model-to-sort-items.d.ts +0 -3
- package/dist/sort-manager/utils/sort-model-to-sort-items.js +0 -50
- package/dist/state/+types.d.ts +0 -36
- package/dist/state/api/cell-root.d.ts +0 -5
- package/dist/state/api/cell-root.js +0 -65
- package/dist/state/api/column-autosize.d.ts +0 -5
- package/dist/state/api/column-autosize.js +0 -72
- package/dist/state/api/column-by-id.d.ts +0 -2
- package/dist/state/api/column-by-id.js +0 -6
- package/dist/state/api/column-field.d.ts +0 -2
- package/dist/state/api/column-field.js +0 -23
- package/dist/state/api/column-from-index.d.ts +0 -2
- package/dist/state/api/column-from-index.js +0 -6
- package/dist/state/api/column-group-toggle.d.ts +0 -2
- package/dist/state/api/column-group-toggle.js +0 -10
- package/dist/state/api/column-index.d.ts +0 -2
- package/dist/state/api/column-index.js +0 -7
- package/dist/state/api/column-move.d.ts +0 -2
- package/dist/state/api/column-move.js +0 -49
- package/dist/state/api/column-resize.d.ts +0 -2
- package/dist/state/api/column-resize.js +0 -9
- package/dist/state/api/column-update.d.ts +0 -5
- package/dist/state/api/column-update.js +0 -26
- package/dist/state/api/dialog-frame.d.ts +0 -8
- package/dist/state/api/dialog-frame.js +0 -16
- package/dist/state/api/edit-begin.d.ts +0 -5
- package/dist/state/api/edit-begin.js +0 -87
- package/dist/state/api/edit-end.d.ts +0 -5
- package/dist/state/api/edit-end.js +0 -43
- package/dist/state/api/edit-is-cell-active.d.ts +0 -5
- package/dist/state/api/edit-is-cell-active.js +0 -22
- package/dist/state/api/edit-update.d.ts +0 -5
- package/dist/state/api/edit-update.js +0 -88
- package/dist/state/api/event-listeners.d.ts +0 -5
- package/dist/state/api/event-listeners.js +0 -19
- package/dist/state/api/export-csv.d.ts +0 -3
- package/dist/state/api/export-csv.js +0 -40
- package/dist/state/api/export-data-rect.d.ts +0 -2
- package/dist/state/api/export-data-rect.js +0 -24
- package/dist/state/api/popover-frame.d.ts +0 -8
- package/dist/state/api/popover-frame.js +0 -16
- package/dist/state/api/position-from-element.d.ts +0 -5
- package/dist/state/api/position-from-element.js +0 -9
- package/dist/state/api/row-by-id.d.ts +0 -2
- package/dist/state/api/row-by-id.js +0 -5
- package/dist/state/api/row-by-index.d.ts +0 -2
- package/dist/state/api/row-by-index.js +0 -9
- package/dist/state/api/row-detail-is-expanded.d.ts +0 -2
- package/dist/state/api/row-detail-is-expanded.js +0 -6
- package/dist/state/api/row-detail-rendered-height.d.ts +0 -5
- package/dist/state/api/row-detail-rendered-height.js +0 -14
- package/dist/state/api/row-detail-toggle.d.ts +0 -2
- package/dist/state/api/row-detail-toggle.js +0 -32
- package/dist/state/api/row-group-apply-expansions.d.ts +0 -2
- package/dist/state/api/row-group-apply-expansions.js +0 -20
- package/dist/state/api/row-group-column-index.d.ts +0 -2
- package/dist/state/api/row-group-column-index.js +0 -14
- package/dist/state/api/row-group-is-expanded.d.ts +0 -2
- package/dist/state/api/row-group-is-expanded.js +0 -15
- package/dist/state/api/row-group-toggle.d.ts +0 -2
- package/dist/state/api/row-group-toggle.js +0 -7
- package/dist/state/api/row-handle-select.d.ts +0 -5
- package/dist/state/api/row-handle-select.js +0 -43
- package/dist/state/api/row-select-all.d.ts +0 -2
- package/dist/state/api/row-select-all.js +0 -17
- package/dist/state/api/row-select.d.ts +0 -5
- package/dist/state/api/row-select.js +0 -35
- package/dist/state/api/row-selected.d.ts +0 -2
- package/dist/state/api/row-selected.js +0 -13
- package/dist/state/api/scroll-into-view.d.ts +0 -5
- package/dist/state/api/scroll-into-view.js +0 -50
- package/dist/state/api/sort-for-column.d.ts +0 -2
- package/dist/state/api/sort-for-column.js +0 -9
- package/dist/state/api/use-row-drag.d.ts +0 -2
- package/dist/state/api/use-row-drag.js +0 -20
- package/dist/state/helpers/cell-row-group.d.ts +0 -2
- package/dist/state/helpers/cell-row-group.js +0 -19
- package/dist/state/helpers/column-add-row-group.d.ts +0 -10
- package/dist/state/helpers/column-add-row-group.js +0 -74
- package/dist/state/helpers/column-layout.d.ts +0 -3
- package/dist/state/helpers/column-layout.js +0 -59
- package/dist/state/helpers/column-marker.d.ts +0 -8
- package/dist/state/helpers/column-marker.js +0 -45
- package/dist/state/helpers/column-view.d.ts +0 -21
- package/dist/state/helpers/column-view.js +0 -33
- package/dist/state/helpers/edit-on-change.d.ts +0 -15
- package/dist/state/helpers/edit-on-change.js +0 -27
- package/dist/state/helpers/empty-row-data-source.d.ts +0 -2
- package/dist/state/helpers/empty-row-data-source.js +0 -18
- package/dist/state/helpers/get-data-rect.d.ts +0 -13
- package/dist/state/helpers/get-data-rect.js +0 -65
- package/dist/state/helpers/get-full-width-callback.d.ts +0 -2
- package/dist/state/helpers/get-full-width-callback.js +0 -10
- package/dist/state/helpers/get-span-callback.d.ts +0 -2
- package/dist/state/helpers/get-span-callback.js +0 -22
- package/dist/state/helpers/resolve-column.d.ts +0 -4
- package/dist/state/helpers/resolve-column.js +0 -29
- package/dist/state/helpers/row-layout/get-focus-criteria.d.ts +0 -17
- package/dist/state/helpers/row-layout/get-focus-criteria.js +0 -62
- package/dist/state/helpers/row-layout/row-layout.d.ts +0 -19
- package/dist/state/helpers/row-layout/row-layout.js +0 -162
- package/dist/state/use-lytenyte.d.ts +0 -3
- package/dist/state/use-lytenyte.js +0 -686
- package/dist/tree-view/branch/branch.d.ts +0 -14
- package/dist/tree-view/branch/branch.js +0 -63
- package/dist/tree-view/branch/use-branch-keys.d.ts +0 -2
- package/dist/tree-view/branch/use-branch-keys.js +0 -87
- package/dist/tree-view/context.d.ts +0 -22
- package/dist/tree-view/context.js +0 -3
- package/dist/tree-view/depth-provider.d.ts +0 -2
- package/dist/tree-view/depth-provider.js +0 -3
- package/dist/tree-view/hooks/use-tree-view-paths.d.ts +0 -2
- package/dist/tree-view/hooks/use-tree-view-paths.js +0 -9
- package/dist/tree-view/index.d.ts +0 -16
- package/dist/tree-view/index.js +0 -16
- package/dist/tree-view/leaf.d.ts +0 -4
- package/dist/tree-view/leaf.js +0 -28
- package/dist/tree-view/navigation/get-all-ids.d.ts +0 -1
- package/dist/tree-view/navigation/get-all-ids.js +0 -7
- package/dist/tree-view/navigation/get-first-node.d.ts +0 -1
- package/dist/tree-view/navigation/get-first-node.js +0 -7
- package/dist/tree-view/navigation/get-last-node.d.ts +0 -1
- package/dist/tree-view/navigation/get-last-node.js +0 -7
- package/dist/tree-view/navigation/get-next-node.d.ts +0 -1
- package/dist/tree-view/navigation/get-next-node.js +0 -13
- package/dist/tree-view/navigation/get-prev-node.d.ts +0 -1
- package/dist/tree-view/navigation/get-prev-node.js +0 -13
- package/dist/tree-view/panel/make-handle-navigation.d.ts +0 -2
- package/dist/tree-view/panel/make-handle-navigation.js +0 -39
- package/dist/tree-view/panel/make-handle-selection.d.ts +0 -2
- package/dist/tree-view/panel/make-handle-selection.js +0 -92
- package/dist/tree-view/panel/make-handle-typeahead.d.ts +0 -1
- package/dist/tree-view/panel/make-handle-typeahead.js +0 -45
- package/dist/tree-view/panel/panel.d.ts +0 -1
- package/dist/tree-view/panel/panel.js +0 -30
- package/dist/tree-view/panel/use-tree-navigation.d.ts +0 -1
- package/dist/tree-view/panel/use-tree-navigation.js +0 -63
- package/dist/tree-view/root.d.ts +0 -17
- package/dist/tree-view/root.js +0 -63
- package/dist/tree-view/utils/get-focusable-nodes.d.ts +0 -1
- package/dist/tree-view/utils/get-focusable-nodes.js +0 -5
- package/dist/tree-view/utils/get-focused-node.d.ts +0 -1
- package/dist/tree-view/utils/get-focused-node.js +0 -14
- package/dist/tree-view/utils/get-ids-between-nodes.d.ts +0 -1
- package/dist/tree-view/utils/get-ids-between-nodes.js +0 -15
- package/dist/tree-view/utils/get-panel.d.ts +0 -1
- package/dist/tree-view/utils/get-panel.js +0 -7
- package/dist/tree-view/utils/get-parent-node.d.ts +0 -1
- package/dist/tree-view/utils/get-parent-node.js +0 -10
- package/dist/tree-view/utils/get-sibling-branches.d.ts +0 -1
- package/dist/tree-view/utils/get-sibling-branches.js +0 -14
- package/dist/tree-view/utils/get-tree-node-id.d.ts +0 -1
- package/dist/tree-view/utils/get-tree-node-id.js +0 -3
- package/dist/tree-view/utils/is-branch-node.d.ts +0 -1
- package/dist/tree-view/utils/is-branch-node.js +0 -3
- package/dist/tree-view/utils/is-leaf-node.d.ts +0 -1
- package/dist/tree-view/utils/is-leaf-node.js +0 -3
- package/dist/tree-view/utils/is-tree-node-disabled.d.ts +0 -1
- package/dist/tree-view/utils/is-tree-node-disabled.js +0 -3
- package/dist/tree-view/utils/select-node.d.ts +0 -2
- package/dist/tree-view/utils/select-node.js +0 -15
- package/dist/tree-view/utils/toggle-all-selections.d.ts +0 -2
- package/dist/tree-view/utils/toggle-all-selections.js +0 -9
- package/dist/tree-view/utils/toggle-selection.d.ts +0 -2
- package/dist/tree-view/utils/toggle-selection.js +0 -21
- package/dist/tree-view/virtualized/force-sync-scrolling.d.ts +0 -2
- package/dist/tree-view/virtualized/force-sync-scrolling.js +0 -23
- package/dist/tree-view/virtualized/get-virtual-tree-paths.d.ts +0 -2
- package/dist/tree-view/virtualized/get-virtual-tree-paths.js +0 -14
- package/dist/tree-view/virtualized/make-virtual-tree.d.ts +0 -31
- package/dist/tree-view/virtualized/make-virtual-tree.js +0 -90
- package/dist/tree-view/virtualized/use-flattened-tree.d.ts +0 -9
- package/dist/tree-view/virtualized/use-flattened-tree.js +0 -36
- package/dist/tree-view/virtualized/use-row-start-and-end.d.ts +0 -2
- package/dist/tree-view/virtualized/use-row-start-and-end.js +0 -27
- package/dist/tree-view/virtualized/use-virtualized-tree.d.ts +0 -22
- package/dist/tree-view/virtualized/use-virtualized-tree.js +0 -100
- package/dist/types/types.d.ts +0 -8
- package/main.css +0 -465
- /package/dist/cell-selection/{cell-selection-driver.d.ts → cell-selection-driver/cell-selection-driver.d.ts} +0 -0
- /package/dist/{types → components/pill-manager}/types.js +0 -0
- /package/dist/{+types.js → components/smart-select/type.js} +0 -0
- /package/dist/{grid-box/+types.js → components/tree-view/types.js} +0 -0
- /package/dist/{row-data-source-client/+types.js → components/types.js} +0 -0
- /package/dist/{row-data-source-server → data-source-server}/async-tree/+constants.async-tree.d.ts +0 -0
- /package/dist/{row-data-source-server → data-source-server}/async-tree/+constants.async-tree.js +0 -0
- /package/dist/{row-data-source-server → data-source-server}/async-tree/apply-delete-action-to-tree.js +0 -0
- /package/dist/{row-data-source-server/async-tree → data-source-server/async-tree/data-integrity-checks}/check-set-action-item-keys-fit.js +0 -0
- /package/dist/{row-data-source-server → data-source-server}/async-tree/get-parent-node-by-path.js +0 -0
- /package/dist/{row-data-source-server → data-source-server}/async-tree/is-set-action-a-no-op-on-node.js +0 -0
- /package/dist/{row-data-source-server → data-source-server}/async-tree/maybe-apply-parent-remove-self.js +0 -0
- /package/dist/{row-data-source-server → data-source-server}/async-tree/maybe-apply-resize.js +0 -0
- /package/dist/{row-data-source-client/filter/+types.js → data-source-server/async-tree/types.js} +0 -0
- /package/dist/{row-data-source-server → data-source-server}/range-tree/range-tree.js +0 -0
- /package/dist/{row-data-source-server/async-tree/+types.async-tree.js → data-source-server/types.js} +0 -0
- /package/dist/{row-data-source-server → data-source-server}/utils/get-node-depth.js +0 -0
- /package/dist/{row-data-source-server → data-source-server}/utils/get-node-path.js +0 -0
- /package/dist/{row-data-source-server → data-source-server}/utils/get-request-id.d.ts +0 -0
- /package/dist/{row-data-source-server → data-source-server}/utils/get-request-id.js +0 -0
- /package/dist/{sort-manager/+types.js → data-source-tree/types.js} +0 -0
- /package/dist/{state/+types.js → hooks/use-slot/types.js} +0 -0
|
@@ -1,252 +0,0 @@
|
|
|
1
|
-
// prettier-ignore
|
|
2
|
-
export const bankDataSmall = [
|
|
3
|
-
{ "age": 30, "job": "unemployed", "marital": "married", "education": "primary", "default": "no", "balance": 1787, "housing": "no", "loan": "no", "contact": "cellular", "day": 19, "month": "oct", "duration": 79, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
4
|
-
{ "age": 33, "job": "services", "marital": "married", "education": "secondary", "default": "no", "balance": 4789, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 11, "month": "may", "duration": 220, "campaign": "1", "pdays": "339", "previous": "4", "poutcome": "failure", "y": "no" },
|
|
5
|
-
{ "age": 35, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 1350, "housing": "yes", "loan": "no", "contact": "cellular", "day": 16, "month": "apr", "duration": 185, "campaign": "1", "pdays": "330", "previous": "1", "poutcome": "failure", "y": "no" },
|
|
6
|
-
{ "age": 30, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 1476, "housing": "yes", "loan": "yes", "contact": "unknown", "day": 3, "month": "jun", "duration": 199, "campaign": "4", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
7
|
-
{ "age": 59, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": 0, "housing": "yes", "loan": "no", "contact": "unknown", "day": 5, "month": "may", "duration": 226, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
8
|
-
{ "age": 35, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 747, "housing": "no", "loan": "no", "contact": "cellular", "day": 23, "month": "feb", "duration": 141, "campaign": "2", "pdays": "176", "previous": "3", "poutcome": "failure", "y": "no" },
|
|
9
|
-
{ "age": 36, "job": "self-employed", "marital": "married", "education": "tertiary", "default": "no", "balance": 307, "housing": "yes", "loan": "no", "contact": "cellular", "day": 14, "month": "may", "duration": 341, "campaign": "1", "pdays": "330", "previous": "2", "poutcome": "other", "y": "no" },
|
|
10
|
-
{ "age": 39, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 147, "housing": "yes", "loan": "no", "contact": "cellular", "day": 6, "month": "may", "duration": 151, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
11
|
-
{ "age": 41, "job": "entrepreneur", "marital": "married", "education": "tertiary", "default": "no", "balance": 221, "housing": "yes", "loan": "no", "contact": "unknown", "day": 14, "month": "may", "duration": 57, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
12
|
-
{ "age": 43, "job": "services", "marital": "married", "education": "primary", "default": "no", "balance": -88, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 17, "month": "apr", "duration": 313, "campaign": "1", "pdays": "147", "previous": "2", "poutcome": "failure", "y": "no" },
|
|
13
|
-
{ "age": 39, "job": "services", "marital": "married", "education": "secondary", "default": "no", "balance": 9374, "housing": "yes", "loan": "no", "contact": "unknown", "day": 20, "month": "may", "duration": 273, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
14
|
-
{ "age": 43, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": 264, "housing": "yes", "loan": "no", "contact": "cellular", "day": 17, "month": "apr", "duration": 113, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
15
|
-
{ "age": 36, "job": "technician", "marital": "married", "education": "tertiary", "default": "no", "balance": 1109, "housing": "no", "loan": "no", "contact": "cellular", "day": 13, "month": "aug", "duration": 328, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
16
|
-
{ "age": 20, "job": "student", "marital": "single", "education": "secondary", "default": "no", "balance": 502, "housing": "no", "loan": "no", "contact": "cellular", "day": 30, "month": "apr", "duration": 261, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
17
|
-
{ "age": 31, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": 360, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 29, "month": "jan", "duration": 89, "campaign": "1", "pdays": "241", "previous": "1", "poutcome": "failure", "y": "no" },
|
|
18
|
-
{ "age": 40, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 194, "housing": "no", "loan": "yes", "contact": "cellular", "day": 29, "month": "aug", "duration": 189, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
19
|
-
{ "age": 56, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 4073, "housing": "no", "loan": "no", "contact": "cellular", "day": 27, "month": "aug", "duration": 239, "campaign": "5", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
20
|
-
{ "age": 37, "job": "admin.", "marital": "single", "education": "tertiary", "default": "no", "balance": 2317, "housing": "yes", "loan": "no", "contact": "cellular", "day": 20, "month": "apr", "duration": 114, "campaign": "1", "pdays": "152", "previous": "2", "poutcome": "failure", "y": "no" },
|
|
21
|
-
{ "age": 25, "job": "blue-collar", "marital": "single", "education": "primary", "default": "no", "balance": -221, "housing": "yes", "loan": "no", "contact": "unknown", "day": 23, "month": "may", "duration": 250, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
22
|
-
{ "age": 31, "job": "services", "marital": "married", "education": "secondary", "default": "no", "balance": 132, "housing": "no", "loan": "no", "contact": "cellular", "day": 7, "month": "jul", "duration": 148, "campaign": "1", "pdays": "152", "previous": "1", "poutcome": "other", "y": "no" },
|
|
23
|
-
{ "age": 38, "job": "management", "marital": "divorced", "education": "unknown", "default": "no", "balance": 0, "housing": "yes", "loan": "no", "contact": "cellular", "day": 18, "month": "nov", "duration": 96, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
24
|
-
{ "age": 42, "job": "management", "marital": "divorced", "education": "tertiary", "default": "no", "balance": 16, "housing": "no", "loan": "no", "contact": "cellular", "day": 19, "month": "nov", "duration": 140, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
25
|
-
{ "age": 44, "job": "services", "marital": "single", "education": "secondary", "default": "no", "balance": 106, "housing": "no", "loan": "no", "contact": "unknown", "day": 12, "month": "jun", "duration": 109, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
26
|
-
{ "age": 44, "job": "entrepreneur", "marital": "married", "education": "secondary", "default": "no", "balance": 93, "housing": "no", "loan": "no", "contact": "cellular", "day": 7, "month": "jul", "duration": 125, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
27
|
-
{ "age": 26, "job": "housemaid", "marital": "married", "education": "tertiary", "default": "no", "balance": 543, "housing": "no", "loan": "no", "contact": "cellular", "day": 30, "month": "jan", "duration": 169, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
28
|
-
{ "age": 41, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 5883, "housing": "no", "loan": "no", "contact": "cellular", "day": 20, "month": "nov", "duration": 182, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
29
|
-
{ "age": 55, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 627, "housing": "yes", "loan": "no", "contact": "unknown", "day": 5, "month": "may", "duration": 247, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
30
|
-
{ "age": 67, "job": "retired", "marital": "married", "education": "unknown", "default": "no", "balance": 696, "housing": "no", "loan": "no", "contact": "telephone", "day": 17, "month": "aug", "duration": 119, "campaign": "1", "pdays": "105", "previous": "2", "poutcome": "failure", "y": "no" },
|
|
31
|
-
{ "age": 56, "job": "self-employed", "marital": "married", "education": "secondary", "default": "no", "balance": 784, "housing": "no", "loan": "yes", "contact": "cellular", "day": 30, "month": "jul", "duration": 149, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
32
|
-
{ "age": 53, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": 105, "housing": "no", "loan": "yes", "contact": "cellular", "day": 21, "month": "aug", "duration": 74, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
33
|
-
{ "age": 68, "job": "retired", "marital": "divorced", "education": "secondary", "default": "no", "balance": 4189, "housing": "no", "loan": "no", "contact": "telephone", "day": 14, "month": "jul", "duration": 897, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
34
|
-
{ "age": 31, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 171, "housing": "no", "loan": "no", "contact": "cellular", "day": 27, "month": "aug", "duration": 81, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
35
|
-
{ "age": 59, "job": "management", "marital": "married", "education": "secondary", "default": "no", "balance": 42, "housing": "no", "loan": "no", "contact": "cellular", "day": 21, "month": "nov", "duration": 40, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
36
|
-
{ "age": 32, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 2536, "housing": "yes", "loan": "no", "contact": "cellular", "day": 26, "month": "aug", "duration": 958, "campaign": "6", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
37
|
-
{ "age": 49, "job": "technician", "marital": "married", "education": "tertiary", "default": "no", "balance": 1235, "housing": "no", "loan": "no", "contact": "cellular", "day": 13, "month": "aug", "duration": 354, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
38
|
-
{ "age": 42, "job": "admin.", "marital": "divorced", "education": "secondary", "default": "no", "balance": 1811, "housing": "yes", "loan": "no", "contact": "unknown", "day": 14, "month": "may", "duration": 150, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
39
|
-
{ "age": 78, "job": "retired", "marital": "divorced", "education": "primary", "default": "no", "balance": 229, "housing": "no", "loan": "no", "contact": "telephone", "day": 22, "month": "oct", "duration": 97, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
40
|
-
{ "age": 32, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": 2089, "housing": "yes", "loan": "no", "contact": "cellular", "day": 14, "month": "nov", "duration": 132, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
41
|
-
{ "age": 33, "job": "management", "marital": "married", "education": "secondary", "default": "no", "balance": 3935, "housing": "yes", "loan": "no", "contact": "cellular", "day": 6, "month": "may", "duration": 765, "campaign": "1", "pdays": "342", "previous": "2", "poutcome": "failure", "y": "yes" },
|
|
42
|
-
{ "age": 23, "job": "services", "marital": "single", "education": "tertiary", "default": "no", "balance": 363, "housing": "yes", "loan": "no", "contact": "unknown", "day": 30, "month": "may", "duration": 16, "campaign": "18", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
43
|
-
{ "age": 38, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 11971, "housing": "yes", "loan": "no", "contact": "unknown", "day": 17, "month": "nov", "duration": 609, "campaign": "2", "pdays": "101", "previous": "3", "poutcome": "failure", "y": "no" },
|
|
44
|
-
{ "age": 36, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 553, "housing": "no", "loan": "no", "contact": "cellular", "day": 11, "month": "aug", "duration": 106, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
45
|
-
{ "age": 52, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": 1117, "housing": "yes", "loan": "no", "contact": "cellular", "day": 13, "month": "may", "duration": 365, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
46
|
-
{ "age": 32, "job": "technician", "marital": "married", "education": "tertiary", "default": "no", "balance": 396, "housing": "yes", "loan": "no", "contact": "cellular", "day": 13, "month": "may", "duration": 205, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
47
|
-
{ "age": 32, "job": "technician", "marital": "single", "education": "tertiary", "default": "no", "balance": 2204, "housing": "yes", "loan": "no", "contact": "cellular", "day": 21, "month": "nov", "duration": 11, "campaign": "4", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
48
|
-
{ "age": 34, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 872, "housing": "yes", "loan": "no", "contact": "unknown", "day": 7, "month": "may", "duration": 105, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
49
|
-
{ "age": 55, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 145, "housing": "no", "loan": "no", "contact": "telephone", "day": 2, "month": "feb", "duration": 59, "campaign": "3", "pdays": "5", "previous": "2", "poutcome": "other", "y": "no" },
|
|
50
|
-
{ "age": 26, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 0, "housing": "yes", "loan": "no", "contact": "unknown", "day": 21, "month": "may", "duration": 425, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
51
|
-
{ "age": 32, "job": "entrepreneur", "marital": "single", "education": "primary", "default": "yes", "balance": -849, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 4, "month": "feb", "duration": 204, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
52
|
-
{ "age": 61, "job": "admin.", "marital": "married", "education": "unknown", "default": "no", "balance": 4629, "housing": "yes", "loan": "no", "contact": "cellular", "day": 27, "month": "jan", "duration": 181, "campaign": "1", "pdays": "92", "previous": "1", "poutcome": "success", "y": "yes" },
|
|
53
|
-
{ "age": 45, "job": "blue-collar", "marital": "divorced", "education": "primary", "default": "no", "balance": 844, "housing": "no", "loan": "no", "contact": "unknown", "day": 5, "month": "jun", "duration": 1018, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
54
|
-
{ "age": 37, "job": "technician", "marital": "single", "education": "secondary", "default": "no", "balance": 228, "housing": "yes", "loan": "no", "contact": "cellular", "day": 20, "month": "aug", "duration": 1740, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
55
|
-
{ "age": 38, "job": "technician", "marital": "single", "education": "secondary", "default": "no", "balance": 50, "housing": "no", "loan": "no", "contact": "cellular", "day": 29, "month": "aug", "duration": 98, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
56
|
-
{ "age": 34, "job": "technician", "marital": "married", "education": "tertiary", "default": "no", "balance": 1539, "housing": "yes", "loan": "no", "contact": "cellular", "day": 15, "month": "jun", "duration": 441, "campaign": "1", "pdays": "56", "previous": "1", "poutcome": "other", "y": "yes" },
|
|
57
|
-
{ "age": 53, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": 2231, "housing": "yes", "loan": "no", "contact": "cellular", "day": 14, "month": "jul", "duration": 272, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
58
|
-
{ "age": 48, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": 3064, "housing": "yes", "loan": "no", "contact": "telephone", "day": 15, "month": "jul", "duration": 159, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
59
|
-
{ "age": 57, "job": "management", "marital": "married", "education": "secondary", "default": "no", "balance": 82, "housing": "no", "loan": "yes", "contact": "telephone", "day": 4, "month": "feb", "duration": 140, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
60
|
-
{ "age": 33, "job": "self-employed", "marital": "single", "education": "tertiary", "default": "no", "balance": 2155, "housing": "no", "loan": "no", "contact": "cellular", "day": 17, "month": "nov", "duration": 295, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
61
|
-
{ "age": 36, "job": "retired", "marital": "single", "education": "secondary", "default": "no", "balance": 101, "housing": "yes", "loan": "yes", "contact": "unknown", "day": 26, "month": "may", "duration": 314, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
62
|
-
{ "age": 54, "job": "technician", "marital": "divorced", "education": "secondary", "default": "no", "balance": 784, "housing": "yes", "loan": "yes", "contact": "unknown", "day": 15, "month": "may", "duration": 579, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
63
|
-
{ "age": 41, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": -516, "housing": "no", "loan": "yes", "contact": "telephone", "day": 8, "month": "jul", "duration": 554, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
64
|
-
{ "age": 63, "job": "retired", "marital": "married", "education": "secondary", "default": "no", "balance": 415, "housing": "yes", "loan": "no", "contact": "cellular", "day": 7, "month": "oct", "duration": 323, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
65
|
-
{ "age": 48, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 5887, "housing": "no", "loan": "no", "contact": "cellular", "day": 13, "month": "aug", "duration": 227, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
66
|
-
{ "age": 48, "job": "services", "marital": "married", "education": "secondary", "default": "no", "balance": 1355, "housing": "no", "loan": "no", "contact": "cellular", "day": 4, "month": "jul", "duration": 134, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
67
|
-
{ "age": 56, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": 16873, "housing": "no", "loan": "no", "contact": "cellular", "day": 7, "month": "oct", "duration": 223, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
68
|
-
{ "age": 51, "job": "blue-collar", "marital": "divorced", "education": "secondary", "default": "no", "balance": 203, "housing": "yes", "loan": "no", "contact": "cellular", "day": 8, "month": "may", "duration": 134, "campaign": "1", "pdays": "170", "previous": "5", "poutcome": "failure", "y": "no" },
|
|
69
|
-
{ "age": 31, "job": "services", "marital": "married", "education": "secondary", "default": "no", "balance": 338, "housing": "yes", "loan": "no", "contact": "cellular", "day": 28, "month": "jan", "duration": 155, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
70
|
-
{ "age": 29, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 444, "housing": "yes", "loan": "no", "contact": "cellular", "day": 21, "month": "jul", "duration": 130, "campaign": "4", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
71
|
-
{ "age": 41, "job": "management", "marital": "married", "education": "secondary", "default": "no", "balance": 0, "housing": "no", "loan": "yes", "contact": "cellular", "day": 7, "month": "jul", "duration": 630, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
72
|
-
{ "age": 32, "job": "technician", "marital": "single", "education": "tertiary", "default": "no", "balance": 360, "housing": "no", "loan": "no", "contact": "cellular", "day": 19, "month": "nov", "duration": 164, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
73
|
-
{ "age": 37, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 0, "housing": "no", "loan": "no", "contact": "cellular", "day": 16, "month": "jul", "duration": 268, "campaign": "2", "pdays": "182", "previous": "3", "poutcome": "success", "y": "yes" },
|
|
74
|
-
{ "age": 42, "job": "entrepreneur", "marital": "divorced", "education": "tertiary", "default": "yes", "balance": 2, "housing": "yes", "loan": "no", "contact": "unknown", "day": 5, "month": "may", "duration": 380, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
75
|
-
{ "age": 31, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 6248, "housing": "yes", "loan": "no", "contact": "unknown", "day": 9, "month": "may", "duration": 154, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
76
|
-
{ "age": 41, "job": "services", "marital": "married", "education": "tertiary", "default": "no", "balance": 412, "housing": "yes", "loan": "no", "contact": "unknown", "day": 3, "month": "jun", "duration": 154, "campaign": "5", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
77
|
-
{ "age": 56, "job": "retired", "marital": "married", "education": "secondary", "default": "no", "balance": 344, "housing": "yes", "loan": "no", "contact": "unknown", "day": 15, "month": "may", "duration": 221, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
78
|
-
{ "age": 54, "job": "management", "marital": "divorced", "education": "tertiary", "default": "no", "balance": 3222, "housing": "no", "loan": "no", "contact": "cellular", "day": 14, "month": "aug", "duration": 67, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
79
|
-
{ "age": 41, "job": "blue-collar", "marital": "divorced", "education": "secondary", "default": "no", "balance": 174, "housing": "yes", "loan": "no", "contact": "cellular", "day": 14, "month": "may", "duration": 367, "campaign": "2", "pdays": "297", "previous": "1", "poutcome": "other", "y": "no" },
|
|
80
|
-
{ "age": 40, "job": "technician", "marital": "single", "education": "secondary", "default": "no", "balance": 591, "housing": "no", "loan": "yes", "contact": "cellular", "day": 14, "month": "aug", "duration": 87, "campaign": "6", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
81
|
-
{ "age": 50, "job": "blue-collar", "marital": "divorced", "education": "primary", "default": "no", "balance": 388, "housing": "no", "loan": "no", "contact": "cellular", "day": 5, "month": "feb", "duration": 701, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
82
|
-
{ "age": 40, "job": "unemployed", "marital": "married", "education": "secondary", "default": "no", "balance": 219, "housing": "yes", "loan": "no", "contact": "cellular", "day": 17, "month": "nov", "duration": 204, "campaign": "2", "pdays": "196", "previous": "1", "poutcome": "failure", "y": "no" },
|
|
83
|
-
{ "age": 27, "job": "admin.", "marital": "divorced", "education": "secondary", "default": "no", "balance": 451, "housing": "yes", "loan": "no", "contact": "cellular", "day": 16, "month": "jul", "duration": 652, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
84
|
-
{ "age": 60, "job": "retired", "marital": "married", "education": "primary", "default": "no", "balance": 5, "housing": "no", "loan": "no", "contact": "cellular", "day": 26, "month": "aug", "duration": 63, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
85
|
-
{ "age": 28, "job": "admin.", "marital": "single", "education": "secondary", "default": "no", "balance": 177, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 6, "month": "may", "duration": 150, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
86
|
-
{ "age": 52, "job": "services", "marital": "married", "education": "secondary", "default": "no", "balance": 657, "housing": "no", "loan": "no", "contact": "telephone", "day": 7, "month": "jul", "duration": 398, "campaign": "2", "pdays": "460", "previous": "2", "poutcome": "failure", "y": "yes" },
|
|
87
|
-
{ "age": 37, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 1315, "housing": "no", "loan": "no", "contact": "cellular", "day": 30, "month": "jun", "duration": 224, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
88
|
-
{ "age": 51, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 1466, "housing": "yes", "loan": "no", "contact": "unknown", "day": 7, "month": "may", "duration": 406, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
89
|
-
{ "age": 41, "job": "technician", "marital": "single", "education": "secondary", "default": "no", "balance": 879, "housing": "no", "loan": "yes", "contact": "cellular", "day": 7, "month": "jul", "duration": 60, "campaign": "4", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
90
|
-
{ "age": 35, "job": "blue-collar", "marital": "single", "education": "primary", "default": "no", "balance": 293, "housing": "yes", "loan": "no", "contact": "unknown", "day": 30, "month": "may", "duration": 521, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
91
|
-
{ "age": 38, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": 424, "housing": "yes", "loan": "no", "contact": "cellular", "day": 17, "month": "apr", "duration": 279, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
92
|
-
{ "age": 34, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": 1831, "housing": "yes", "loan": "no", "contact": "unknown", "day": 20, "month": "may", "duration": 203, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
93
|
-
{ "age": 39, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 111, "housing": "no", "loan": "no", "contact": "cellular", "day": 18, "month": "nov", "duration": 201, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
94
|
-
{ "age": 34, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 455, "housing": "yes", "loan": "no", "contact": "unknown", "day": 20, "month": "jun", "duration": 372, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
95
|
-
{ "age": 27, "job": "services", "marital": "single", "education": "secondary", "default": "no", "balance": -195, "housing": "yes", "loan": "no", "contact": "cellular", "day": 18, "month": "may", "duration": 391, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
96
|
-
{ "age": 32, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 3616, "housing": "no", "loan": "no", "contact": "cellular", "day": 14, "month": "aug", "duration": 165, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
97
|
-
{ "age": 57, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": 14093, "housing": "no", "loan": "no", "contact": "cellular", "day": 11, "month": "aug", "duration": 231, "campaign": "5", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
98
|
-
{ "age": 41, "job": "unknown", "marital": "single", "education": "tertiary", "default": "no", "balance": 1567, "housing": "no", "loan": "no", "contact": "cellular", "day": 1, "month": "jul", "duration": 291, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
99
|
-
{ "age": 41, "job": "admin.", "marital": "married", "education": "tertiary", "default": "no", "balance": 5426, "housing": "yes", "loan": "no", "contact": "unknown", "day": 14, "month": "may", "duration": 149, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
100
|
-
{ "age": 30, "job": "admin.", "marital": "single", "education": "tertiary", "default": "no", "balance": 261, "housing": "no", "loan": "no", "contact": "cellular", "day": 19, "month": "oct", "duration": 233, "campaign": "1", "pdays": "137", "previous": "20", "poutcome": "failure", "y": "no" },
|
|
101
|
-
{ "age": 36, "job": "blue-collar", "marital": "divorced", "education": "secondary", "default": "no", "balance": 2843, "housing": "no", "loan": "no", "contact": "cellular", "day": 12, "month": "feb", "duration": 473, "campaign": "1", "pdays": "182", "previous": "1", "poutcome": "success", "y": "no" },
|
|
102
|
-
{ "age": 31, "job": "unemployed", "marital": "single", "education": "primary", "default": "no", "balance": 406, "housing": "no", "loan": "no", "contact": "cellular", "day": 4, "month": "feb", "duration": 736, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
103
|
-
{ "age": 36, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": 0, "housing": "yes", "loan": "no", "contact": "unknown", "day": 6, "month": "may", "duration": 337, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
104
|
-
{ "age": 38, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 493, "housing": "yes", "loan": "no", "contact": "cellular", "day": 11, "month": "may", "duration": 553, "campaign": "1", "pdays": "367", "previous": "7", "poutcome": "failure", "y": "no" },
|
|
105
|
-
{ "age": 49, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 5996, "housing": "no", "loan": "no", "contact": "telephone", "day": 21, "month": "nov", "duration": 345, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
106
|
-
{ "age": 57, "job": "services", "marital": "single", "education": "primary", "default": "no", "balance": 3777, "housing": "yes", "loan": "no", "contact": "telephone", "day": 13, "month": "may", "duration": 65, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
107
|
-
{ "age": 34, "job": "management", "marital": "single", "education": "secondary", "default": "no", "balance": 524, "housing": "no", "loan": "no", "contact": "unknown", "day": 13, "month": "aug", "duration": 9, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
108
|
-
{ "age": 32, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 574, "housing": "yes", "loan": "no", "contact": "cellular", "day": 14, "month": "apr", "duration": 259, "campaign": "2", "pdays": "145", "previous": "3", "poutcome": "failure", "y": "no" },
|
|
109
|
-
{ "age": 37, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": 427, "housing": "yes", "loan": "yes", "contact": "unknown", "day": 9, "month": "jun", "duration": 371, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
110
|
-
{ "age": 33, "job": "self-employed", "marital": "married", "education": "tertiary", "default": "no", "balance": 483, "housing": "yes", "loan": "no", "contact": "cellular", "day": 3, "month": "feb", "duration": 280, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
111
|
-
{ "age": 56, "job": "unemployed", "marital": "married", "education": "primary", "default": "no", "balance": 3391, "housing": "no", "loan": "no", "contact": "cellular", "day": 21, "month": "apr", "duration": 243, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
112
|
-
{ "age": 27, "job": "housemaid", "marital": "married", "education": "primary", "default": "no", "balance": 0, "housing": "yes", "loan": "no", "contact": "cellular", "day": 23, "month": "jul", "duration": 435, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
113
|
-
{ "age": 21, "job": "student", "marital": "single", "education": "secondary", "default": "no", "balance": 2488, "housing": "no", "loan": "no", "contact": "cellular", "day": 30, "month": "jun", "duration": 258, "campaign": "6", "pdays": "169", "previous": "3", "poutcome": "success", "y": "yes" },
|
|
114
|
-
{ "age": 58, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 1517, "housing": "yes", "loan": "no", "contact": "telephone", "day": 29, "month": "jul", "duration": 7, "campaign": "5", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
115
|
-
{ "age": 32, "job": "self-employed", "marital": "married", "education": "secondary", "default": "no", "balance": 217, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 15, "month": "jul", "duration": 317, "campaign": "5", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
116
|
-
{ "age": 33, "job": "blue-collar", "marital": "single", "education": "secondary", "default": "no", "balance": 22, "housing": "no", "loan": "no", "contact": "cellular", "day": 30, "month": "jan", "duration": 76, "campaign": "2", "pdays": "207", "previous": "1", "poutcome": "failure", "y": "no" },
|
|
117
|
-
{ "age": 25, "job": "student", "marital": "single", "education": "secondary", "default": "no", "balance": 331, "housing": "no", "loan": "no", "contact": "telephone", "day": 26, "month": "aug", "duration": 170, "campaign": "4", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
118
|
-
{ "age": 25, "job": "technician", "marital": "single", "education": "secondary", "default": "no", "balance": 505, "housing": "no", "loan": "yes", "contact": "cellular", "day": 17, "month": "nov", "duration": 386, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
119
|
-
{ "age": 30, "job": "services", "marital": "married", "education": "secondary", "default": "no", "balance": 1808, "housing": "yes", "loan": "no", "contact": "cellular", "day": 18, "month": "may", "duration": 83, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
120
|
-
{ "age": 22, "job": "admin.", "marital": "single", "education": "secondary", "default": "no", "balance": 4111, "housing": "no", "loan": "yes", "contact": "cellular", "day": 19, "month": "aug", "duration": 65, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
121
|
-
{ "age": 39, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 52, "housing": "no", "loan": "no", "contact": "cellular", "day": 13, "month": "aug", "duration": 69, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
122
|
-
{ "age": 46, "job": "management", "marital": "divorced", "education": "tertiary", "default": "no", "balance": 25, "housing": "no", "loan": "no", "contact": "unknown", "day": 17, "month": "jun", "duration": 564, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
123
|
-
{ "age": 31, "job": "admin.", "marital": "divorced", "education": "secondary", "default": "no", "balance": 1890, "housing": "yes", "loan": "no", "contact": "cellular", "day": 21, "month": "jul", "duration": 588, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
124
|
-
{ "age": 45, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 419, "housing": "no", "loan": "no", "contact": "cellular", "day": 18, "month": "aug", "duration": 113, "campaign": "4", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
125
|
-
{ "age": 32, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 2693, "housing": "yes", "loan": "no", "contact": "unknown", "day": 21, "month": "may", "duration": 16, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
126
|
-
{ "age": 36, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": -231, "housing": "no", "loan": "yes", "contact": "cellular", "day": 15, "month": "jul", "duration": 779, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
127
|
-
{ "age": 51, "job": "management", "marital": "single", "education": "tertiary", "default": "yes", "balance": -55, "housing": "yes", "loan": "no", "contact": "cellular", "day": 11, "month": "may", "duration": 281, "campaign": "2", "pdays": "266", "previous": "6", "poutcome": "failure", "y": "no" },
|
|
128
|
-
{ "age": 34, "job": "self-employed", "marital": "single", "education": "tertiary", "default": "no", "balance": 462, "housing": "no", "loan": "no", "contact": "cellular", "day": 21, "month": "aug", "duration": 1877, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
129
|
-
{ "age": 24, "job": "unemployed", "marital": "single", "education": "secondary", "default": "no", "balance": 119, "housing": "no", "loan": "no", "contact": "unknown", "day": 15, "month": "sep", "duration": 51, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
130
|
-
{ "age": 45, "job": "technician", "marital": "single", "education": "secondary", "default": "no", "balance": 586, "housing": "no", "loan": "yes", "contact": "cellular", "day": 28, "month": "jul", "duration": 32, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
131
|
-
{ "age": 32, "job": "blue-collar", "marital": "single", "education": "secondary", "default": "no", "balance": 228, "housing": "no", "loan": "no", "contact": "telephone", "day": 5, "month": "feb", "duration": 176, "campaign": "1", "pdays": "288", "previous": "3", "poutcome": "failure", "y": "no" },
|
|
132
|
-
{ "age": 77, "job": "retired", "marital": "divorced", "education": "tertiary", "default": "no", "balance": 4659, "housing": "no", "loan": "no", "contact": "cellular", "day": 14, "month": "apr", "duration": 161, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
133
|
-
{ "age": 41, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 168, "housing": "yes", "loan": "no", "contact": "cellular", "day": 18, "month": "nov", "duration": 187, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
134
|
-
{ "age": 37, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 0, "housing": "yes", "loan": "no", "contact": "unknown", "day": 26, "month": "may", "duration": 24, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
135
|
-
{ "age": 43, "job": "blue-collar", "marital": "married", "education": "unknown", "default": "yes", "balance": -715, "housing": "yes", "loan": "no", "contact": "unknown", "day": 30, "month": "may", "duration": 67, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
136
|
-
{ "age": 48, "job": "admin.", "marital": "married", "education": "unknown", "default": "no", "balance": 0, "housing": "yes", "loan": "no", "contact": "cellular", "day": 8, "month": "may", "duration": 85, "campaign": "1", "pdays": "168", "previous": "2", "poutcome": "failure", "y": "no" },
|
|
137
|
-
{ "age": 27, "job": "technician", "marital": "single", "education": "secondary", "default": "no", "balance": 769, "housing": "yes", "loan": "no", "contact": "unknown", "day": 9, "month": "may", "duration": 317, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
138
|
-
{ "age": 33, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 0, "housing": "no", "loan": "no", "contact": "cellular", "day": 28, "month": "aug", "duration": 236, "campaign": "10", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
139
|
-
{ "age": 29, "job": "admin.", "marital": "single", "education": "secondary", "default": "no", "balance": 428, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 7, "month": "may", "duration": 54, "campaign": "1", "pdays": "345", "previous": "2", "poutcome": "failure", "y": "no" },
|
|
140
|
-
{ "age": 34, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 0, "housing": "no", "loan": "no", "contact": "cellular", "day": 5, "month": "feb", "duration": 71, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
141
|
-
{ "age": 52, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": -970, "housing": "yes", "loan": "no", "contact": "cellular", "day": 4, "month": "feb", "duration": 489, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
142
|
-
{ "age": 60, "job": "management", "marital": "married", "education": "unknown", "default": "no", "balance": 6313, "housing": "no", "loan": "no", "contact": "unknown", "day": 19, "month": "jun", "duration": 39, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
143
|
-
{ "age": 32, "job": "management", "marital": "divorced", "education": "tertiary", "default": "no", "balance": 948, "housing": "no", "loan": "no", "contact": "cellular", "day": 12, "month": "aug", "duration": 204, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
144
|
-
{ "age": 32, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 0, "housing": "yes", "loan": "no", "contact": "cellular", "day": 22, "month": "jul", "duration": 455, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
145
|
-
{ "age": 56, "job": "services", "marital": "divorced", "education": "unknown", "default": "no", "balance": 1877, "housing": "yes", "loan": "no", "contact": "unknown", "day": 30, "month": "may", "duration": 86, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
146
|
-
{ "age": 31, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 874, "housing": "yes", "loan": "no", "contact": "cellular", "day": 18, "month": "nov", "duration": 190, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
147
|
-
{ "age": 42, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": 323, "housing": "yes", "loan": "yes", "contact": "unknown", "day": 8, "month": "may", "duration": 280, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
148
|
-
{ "age": 35, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 106, "housing": "no", "loan": "yes", "contact": "cellular", "day": 11, "month": "aug", "duration": 588, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
149
|
-
{ "age": 56, "job": "retired", "marital": "married", "education": "primary", "default": "no", "balance": 1906, "housing": "no", "loan": "yes", "contact": "unknown", "day": 19, "month": "jun", "duration": 45, "campaign": "9", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
150
|
-
{ "age": 48, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 1152, "housing": "yes", "loan": "no", "contact": "cellular", "day": 21, "month": "jul", "duration": 168, "campaign": "5", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
151
|
-
{ "age": 46, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": 179, "housing": "yes", "loan": "no", "contact": "cellular", "day": 29, "month": "jan", "duration": 194, "campaign": "4", "pdays": "436", "previous": "1", "poutcome": "other", "y": "no" },
|
|
152
|
-
{ "age": 37, "job": "technician", "marital": "single", "education": "unknown", "default": "no", "balance": 391, "housing": "yes", "loan": "no", "contact": "unknown", "day": 8, "month": "may", "duration": 103, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
153
|
-
{ "age": 41, "job": "entrepreneur", "marital": "married", "education": "unknown", "default": "no", "balance": 89, "housing": "yes", "loan": "no", "contact": "unknown", "day": 6, "month": "may", "duration": 333, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
154
|
-
{ "age": 36, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 442, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 29, "month": "jul", "duration": 102, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
155
|
-
{ "age": 45, "job": "unemployed", "marital": "divorced", "education": "primary", "default": "yes", "balance": -249, "housing": "yes", "loan": "yes", "contact": "unknown", "day": 1, "month": "jul", "duration": 92, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
156
|
-
{ "age": 55, "job": "entrepreneur", "marital": "married", "education": "secondary", "default": "no", "balance": 8104, "housing": "no", "loan": "no", "contact": "cellular", "day": 6, "month": "feb", "duration": 213, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
157
|
-
{ "age": 39, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 501, "housing": "no", "loan": "no", "contact": "unknown", "day": 26, "month": "may", "duration": 289, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
158
|
-
{ "age": 35, "job": "technician", "marital": "divorced", "education": "secondary", "default": "no", "balance": 308, "housing": "no", "loan": "no", "contact": "cellular", "day": 22, "month": "aug", "duration": 77, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
159
|
-
{ "age": 55, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": 602, "housing": "no", "loan": "no", "contact": "cellular", "day": 1, "month": "jun", "duration": 324, "campaign": "3", "pdays": "90", "previous": "2", "poutcome": "success", "y": "yes" },
|
|
160
|
-
{ "age": 55, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 273, "housing": "yes", "loan": "no", "contact": "cellular", "day": 29, "month": "jan", "duration": 84, "campaign": "3", "pdays": "183", "previous": "3", "poutcome": "failure", "y": "no" },
|
|
161
|
-
{ "age": 27, "job": "self-employed", "marital": "single", "education": "secondary", "default": "no", "balance": 50, "housing": "no", "loan": "no", "contact": "cellular", "day": 29, "month": "jan", "duration": 168, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
162
|
-
{ "age": 34, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 1641, "housing": "yes", "loan": "no", "contact": "cellular", "day": 17, "month": "apr", "duration": 380, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
163
|
-
{ "age": 34, "job": "blue-collar", "marital": "married", "education": "tertiary", "default": "no", "balance": 20, "housing": "no", "loan": "no", "contact": "unknown", "day": 4, "month": "oct", "duration": 10, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
164
|
-
{ "age": 25, "job": "admin.", "marital": "single", "education": "secondary", "default": "no", "balance": 4590, "housing": "yes", "loan": "no", "contact": "unknown", "day": 28, "month": "may", "duration": 199, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
165
|
-
{ "age": 41, "job": "admin.", "marital": "single", "education": "secondary", "default": "no", "balance": -256, "housing": "no", "loan": "yes", "contact": "unknown", "day": 9, "month": "may", "duration": 35, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
166
|
-
{ "age": 43, "job": "services", "marital": "married", "education": "secondary", "default": "no", "balance": 978, "housing": "yes", "loan": "yes", "contact": "unknown", "day": 26, "month": "may", "duration": 82, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
167
|
-
{ "age": 28, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 80, "housing": "no", "loan": "no", "contact": "cellular", "day": 20, "month": "oct", "duration": 676, "campaign": "2", "pdays": "146", "previous": "2", "poutcome": "failure", "y": "yes" },
|
|
168
|
-
{ "age": 31, "job": "admin.", "marital": "single", "education": "secondary", "default": "no", "balance": 2104, "housing": "yes", "loan": "no", "contact": "unknown", "day": 3, "month": "jun", "duration": 455, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
169
|
-
{ "age": 78, "job": "housemaid", "marital": "married", "education": "secondary", "default": "no", "balance": 499, "housing": "no", "loan": "no", "contact": "telephone", "day": 16, "month": "mar", "duration": 80, "campaign": "4", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
170
|
-
{ "age": 45, "job": "blue-collar", "marital": "divorced", "education": "secondary", "default": "no", "balance": 1269, "housing": "yes", "loan": "no", "contact": "cellular", "day": 29, "month": "jan", "duration": 549, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
171
|
-
{ "age": 48, "job": "technician", "marital": "married", "education": "tertiary", "default": "no", "balance": 310, "housing": "no", "loan": "no", "contact": "unknown", "day": 6, "month": "may", "duration": 135, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
172
|
-
{ "age": 32, "job": "blue-collar", "marital": "single", "education": "secondary", "default": "no", "balance": 1143, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 10, "month": "jul", "duration": 412, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
173
|
-
{ "age": 42, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 2980, "housing": "no", "loan": "no", "contact": "unknown", "day": 20, "month": "jun", "duration": 101, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
174
|
-
{ "age": 37, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 37, "housing": "no", "loan": "no", "contact": "cellular", "day": 28, "month": "jan", "duration": 253, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
175
|
-
{ "age": 40, "job": "admin.", "marital": "single", "education": "secondary", "default": "no", "balance": 462, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 6, "month": "apr", "duration": 272, "campaign": "1", "pdays": "335", "previous": "4", "poutcome": "other", "y": "no" },
|
|
176
|
-
{ "age": 32, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": 1031, "housing": "yes", "loan": "no", "contact": "cellular", "day": 17, "month": "jul", "duration": 84, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
177
|
-
{ "age": 42, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 9009, "housing": "no", "loan": "no", "contact": "cellular", "day": 20, "month": "nov", "duration": 135, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
178
|
-
{ "age": 43, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": -465, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 23, "month": "jul", "duration": 166, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
179
|
-
{ "age": 44, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": 5181, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 31, "month": "jul", "duration": 18, "campaign": "7", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
180
|
-
{ "age": 37, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": 176, "housing": "yes", "loan": "no", "contact": "cellular", "day": 5, "month": "may", "duration": 147, "campaign": "2", "pdays": "347", "previous": "1", "poutcome": "failure", "y": "no" },
|
|
181
|
-
{ "age": 37, "job": "unknown", "marital": "married", "education": "unknown", "default": "no", "balance": 1699, "housing": "no", "loan": "no", "contact": "unknown", "day": 9, "month": "jun", "duration": 63, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
182
|
-
{ "age": 37, "job": "admin.", "marital": "married", "education": "tertiary", "default": "no", "balance": 0, "housing": "yes", "loan": "no", "contact": "cellular", "day": 17, "month": "nov", "duration": 65, "campaign": "2", "pdays": "119", "previous": "1", "poutcome": "failure", "y": "no" },
|
|
183
|
-
{ "age": 28, "job": "technician", "marital": "single", "education": "tertiary", "default": "no", "balance": 172, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 2, "month": "feb", "duration": 194, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
184
|
-
{ "age": 32, "job": "services", "marital": "single", "education": "secondary", "default": "no", "balance": 0, "housing": "no", "loan": "yes", "contact": "cellular", "day": 11, "month": "jul", "duration": 333, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
185
|
-
{ "age": 34, "job": "admin.", "marital": "single", "education": "secondary", "default": "no", "balance": 6979, "housing": "yes", "loan": "no", "contact": "cellular", "day": 15, "month": "may", "duration": 14, "campaign": "5", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
186
|
-
{ "age": 40, "job": "admin.", "marital": "divorced", "education": "secondary", "default": "no", "balance": 6, "housing": "no", "loan": "no", "contact": "unknown", "day": 11, "month": "jun", "duration": 140, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
187
|
-
{ "age": 34, "job": "services", "marital": "married", "education": "secondary", "default": "no", "balance": -62, "housing": "yes", "loan": "no", "contact": "unknown", "day": 16, "month": "jun", "duration": 109, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
188
|
-
{ "age": 34, "job": "self-employed", "marital": "married", "education": "tertiary", "default": "no", "balance": 1972, "housing": "yes", "loan": "no", "contact": "cellular", "day": 23, "month": "jul", "duration": 61, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
189
|
-
{ "age": 34, "job": "admin.", "marital": "married", "education": "tertiary", "default": "no", "balance": 899, "housing": "yes", "loan": "no", "contact": "telephone", "day": 19, "month": "nov", "duration": 377, "campaign": "3", "pdays": "7", "previous": "4", "poutcome": "success", "y": "no" },
|
|
190
|
-
{ "age": 37, "job": "services", "marital": "single", "education": "secondary", "default": "no", "balance": 21, "housing": "yes", "loan": "no", "contact": "cellular", "day": 2, "month": "feb", "duration": 96, "campaign": "1", "pdays": "271", "previous": "2", "poutcome": "other", "y": "no" },
|
|
191
|
-
{ "age": 36, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 23, "housing": "yes", "loan": "no", "contact": "cellular", "day": 8, "month": "may", "duration": 152, "campaign": "2", "pdays": "347", "previous": "1", "poutcome": "failure", "y": "no" },
|
|
192
|
-
{ "age": 56, "job": "retired", "marital": "married", "education": "secondary", "default": "no", "balance": -1206, "housing": "yes", "loan": "no", "contact": "cellular", "day": 15, "month": "jun", "duration": 382, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
193
|
-
{ "age": 49, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 0, "housing": "yes", "loan": "yes", "contact": "telephone", "day": 23, "month": "jul", "duration": 97, "campaign": "6", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
194
|
-
{ "age": 33, "job": "self-employed", "marital": "married", "education": "secondary", "default": "no", "balance": 215, "housing": "yes", "loan": "no", "contact": "cellular", "day": 29, "month": "jul", "duration": 543, "campaign": "12", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
195
|
-
{ "age": 30, "job": "management", "marital": "single", "education": "tertiary", "default": "no", "balance": 1372, "housing": "no", "loan": "no", "contact": "cellular", "day": 20, "month": "nov", "duration": 240, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
196
|
-
{ "age": 36, "job": "services", "marital": "married", "education": "secondary", "default": "no", "balance": 1981, "housing": "no", "loan": "no", "contact": "unknown", "day": 17, "month": "jun", "duration": 48, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
197
|
-
{ "age": 23, "job": "student", "marital": "single", "education": "secondary", "default": "no", "balance": 9216, "housing": "no", "loan": "no", "contact": "cellular", "day": 5, "month": "jun", "duration": 471, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
198
|
-
{ "age": 57, "job": "retired", "marital": "divorced", "education": "secondary", "default": "no", "balance": 39, "housing": "yes", "loan": "no", "contact": "cellular", "day": 30, "month": "jul", "duration": 354, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
199
|
-
{ "age": 27, "job": "blue-collar", "marital": "single", "education": "secondary", "default": "no", "balance": 5563, "housing": "yes", "loan": "no", "contact": "unknown", "day": 30, "month": "may", "duration": 435, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
200
|
-
{ "age": 38, "job": "services", "marital": "married", "education": "secondary", "default": "no", "balance": 1, "housing": "no", "loan": "yes", "contact": "cellular", "day": 21, "month": "nov", "duration": 152, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
201
|
-
{ "age": 42, "job": "technician", "marital": "married", "education": "tertiary", "default": "no", "balance": 782, "housing": "no", "loan": "no", "contact": "cellular", "day": 3, "month": "apr", "duration": 285, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
202
|
-
{ "age": 75, "job": "retired", "marital": "married", "education": "secondary", "default": "no", "balance": 3771, "housing": "no", "loan": "no", "contact": "telephone", "day": 15, "month": "apr", "duration": 185, "campaign": "1", "pdays": "181", "previous": "2", "poutcome": "success", "y": "yes" },
|
|
203
|
-
{ "age": 34, "job": "technician", "marital": "single", "education": "tertiary", "default": "no", "balance": 992, "housing": "yes", "loan": "no", "contact": "cellular", "day": 4, "month": "may", "duration": 301, "campaign": "1", "pdays": "88", "previous": "2", "poutcome": "success", "y": "no" },
|
|
204
|
-
{ "age": 48, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 1526, "housing": "no", "loan": "no", "contact": "cellular", "day": 6, "month": "aug", "duration": 273, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
205
|
-
{ "age": 35, "job": "technician", "marital": "single", "education": "tertiary", "default": "no", "balance": 2658, "housing": "yes", "loan": "no", "contact": "cellular", "day": 19, "month": "aug", "duration": 768, "campaign": "2", "pdays": "141", "previous": "3", "poutcome": "failure", "y": "yes" },
|
|
206
|
-
{ "age": 39, "job": "management", "marital": "divorced", "education": "tertiary", "default": "no", "balance": 1315, "housing": "yes", "loan": "no", "contact": "cellular", "day": 19, "month": "nov", "duration": 1337, "campaign": "4", "pdays": "126", "previous": "1", "poutcome": "failure", "y": "no" },
|
|
207
|
-
{ "age": 29, "job": "blue-collar", "marital": "single", "education": "tertiary", "default": "no", "balance": 455, "housing": "no", "loan": "no", "contact": "telephone", "day": 21, "month": "apr", "duration": 403, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
208
|
-
{ "age": 45, "job": "technician", "marital": "single", "education": "tertiary", "default": "no", "balance": 0, "housing": "yes", "loan": "no", "contact": "cellular", "day": 18, "month": "nov", "duration": 139, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
209
|
-
{ "age": 42, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 2030, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 9, "month": "jul", "duration": 196, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
210
|
-
{ "age": 29, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 1599, "housing": "yes", "loan": "no", "contact": "cellular", "day": 8, "month": "jul", "duration": 115, "campaign": "1", "pdays": "61", "previous": "1", "poutcome": "failure", "y": "no" },
|
|
211
|
-
{ "age": 38, "job": "services", "marital": "single", "education": "secondary", "default": "no", "balance": -196, "housing": "yes", "loan": "no", "contact": "cellular", "day": 2, "month": "feb", "duration": 60, "campaign": "1", "pdays": "271", "previous": "1", "poutcome": "failure", "y": "no" },
|
|
212
|
-
{ "age": 56, "job": "retired", "marital": "married", "education": "secondary", "default": "no", "balance": 1333, "housing": "no", "loan": "no", "contact": "cellular", "day": 28, "month": "aug", "duration": 17, "campaign": "14", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
213
|
-
{ "age": 36, "job": "technician", "marital": "single", "education": "secondary", "default": "no", "balance": 9149, "housing": "yes", "loan": "no", "contact": "cellular", "day": 13, "month": "aug", "duration": 141, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
214
|
-
{ "age": 25, "job": "blue-collar", "marital": "single", "education": "secondary", "default": "no", "balance": -350, "housing": "yes", "loan": "no", "contact": "unknown", "day": 23, "month": "jun", "duration": 95, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
215
|
-
{ "age": 38, "job": "technician", "marital": "married", "education": "tertiary", "default": "no", "balance": 432, "housing": "yes", "loan": "no", "contact": "cellular", "day": 15, "month": "may", "duration": 10, "campaign": "2", "pdays": "373", "previous": "1", "poutcome": "other", "y": "no" },
|
|
216
|
-
{ "age": 57, "job": "self-employed", "marital": "married", "education": "secondary", "default": "no", "balance": 11494, "housing": "no", "loan": "no", "contact": "cellular", "day": 19, "month": "nov", "duration": 198, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
217
|
-
{ "age": 31, "job": "management", "marital": "married", "education": "tertiary", "default": "yes", "balance": -253, "housing": "no", "loan": "no", "contact": "cellular", "day": 12, "month": "aug", "duration": 220, "campaign": "4", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
218
|
-
{ "age": 42, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 372, "housing": "yes", "loan": "no", "contact": "cellular", "day": 3, "month": "aug", "duration": 654, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "yes" },
|
|
219
|
-
{ "age": 45, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 1410, "housing": "no", "loan": "no", "contact": "cellular", "day": 11, "month": "aug", "duration": 71, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
220
|
-
{ "age": 30, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": 975, "housing": "yes", "loan": "no", "contact": "cellular", "day": 13, "month": "may", "duration": 256, "campaign": "2", "pdays": "351", "previous": "2", "poutcome": "failure", "y": "no" },
|
|
221
|
-
{ "age": 49, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 305, "housing": "yes", "loan": "yes", "contact": "telephone", "day": 10, "month": "jul", "duration": 834, "campaign": "10", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
222
|
-
{ "age": 49, "job": "services", "marital": "married", "education": "secondary", "default": "no", "balance": 400, "housing": "no", "loan": "no", "contact": "cellular", "day": 21, "month": "aug", "duration": 151, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
223
|
-
{ "age": 53, "job": "retired", "marital": "married", "education": "tertiary", "default": "no", "balance": -22, "housing": "yes", "loan": "no", "contact": "cellular", "day": 31, "month": "jul", "duration": 20, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
224
|
-
{ "age": 37, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 4030, "housing": "yes", "loan": "no", "contact": "unknown", "day": 26, "month": "may", "duration": 178, "campaign": "5", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
225
|
-
{ "age": 49, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 365, "housing": "no", "loan": "no", "contact": "unknown", "day": 26, "month": "may", "duration": 59, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
226
|
-
{ "age": 41, "job": "self-employed", "marital": "married", "education": "primary", "default": "no", "balance": 204, "housing": "no", "loan": "no", "contact": "cellular", "day": 13, "month": "aug", "duration": 111, "campaign": "7", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
227
|
-
{ "age": 54, "job": "management", "marital": "married", "education": "primary", "default": "no", "balance": 1691, "housing": "yes", "loan": "no", "contact": "cellular", "day": 20, "month": "nov", "duration": 186, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
228
|
-
{ "age": 32, "job": "services", "marital": "single", "education": "secondary", "default": "no", "balance": 406, "housing": "yes", "loan": "no", "contact": "unknown", "day": 6, "month": "may", "duration": 227, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
229
|
-
{ "age": 33, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": -204, "housing": "no", "loan": "no", "contact": "cellular", "day": 15, "month": "may", "duration": 297, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
230
|
-
{ "age": 33, "job": "technician", "marital": "married", "education": "secondary", "default": "no", "balance": 359, "housing": "yes", "loan": "no", "contact": "cellular", "day": 20, "month": "apr", "duration": 210, "campaign": "1", "pdays": "242", "previous": "1", "poutcome": "other", "y": "no" },
|
|
231
|
-
{ "age": 36, "job": "blue-collar", "marital": "married", "education": "primary", "default": "no", "balance": 123, "housing": "yes", "loan": "no", "contact": "cellular", "day": 18, "month": "may", "duration": 9, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
232
|
-
{ "age": 35, "job": "technician", "marital": "married", "education": "tertiary", "default": "no", "balance": 0, "housing": "yes", "loan": "yes", "contact": "cellular", "day": 23, "month": "sep", "duration": 112, "campaign": "1", "pdays": "62", "previous": "6", "poutcome": "other", "y": "no" },
|
|
233
|
-
{ "age": 52, "job": "unknown", "marital": "married", "education": "secondary", "default": "no", "balance": 142, "housing": "no", "loan": "no", "contact": "cellular", "day": 25, "month": "aug", "duration": 112, "campaign": "6", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
234
|
-
{ "age": 40, "job": "entrepreneur", "marital": "married", "education": "tertiary", "default": "no", "balance": 3571, "housing": "no", "loan": "no", "contact": "unknown", "day": 9, "month": "jun", "duration": 222, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
235
|
-
{ "age": 44, "job": "technician", "marital": "single", "education": "secondary", "default": "no", "balance": 33, "housing": "yes", "loan": "no", "contact": "cellular", "day": 13, "month": "may", "duration": 195, "campaign": "3", "pdays": "351", "previous": "10", "poutcome": "failure", "y": "no" },
|
|
236
|
-
{ "age": 45, "job": "blue-collar", "marital": "single", "education": "secondary", "default": "no", "balance": 0, "housing": "yes", "loan": "no", "contact": "cellular", "day": 26, "month": "jul", "duration": 768, "campaign": "2", "pdays": "91", "previous": "5", "poutcome": "success", "y": "no" },
|
|
237
|
-
{ "age": 30, "job": "student", "marital": "single", "education": "secondary", "default": "no", "balance": 3096, "housing": "no", "loan": "no", "contact": "cellular", "day": 26, "month": "jan", "duration": 123, "campaign": "1", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
238
|
-
{ "age": 48, "job": "technician", "marital": "divorced", "education": "secondary", "default": "yes", "balance": 20, "housing": "no", "loan": "no", "contact": "cellular", "day": 27, "month": "aug", "duration": 145, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
239
|
-
{ "age": 33, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": 3576, "housing": "yes", "loan": "no", "contact": "cellular", "day": 2, "month": "apr", "duration": 124, "campaign": "1", "pdays": "308", "previous": "2", "poutcome": "other", "y": "no" },
|
|
240
|
-
{ "age": 57, "job": "technician", "marital": "married", "education": "unknown", "default": "no", "balance": 206, "housing": "yes", "loan": "no", "contact": "unknown", "day": 5, "month": "may", "duration": 216, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
241
|
-
{ "age": 57, "job": "housemaid", "marital": "married", "education": "primary", "default": "no", "balance": 7082, "housing": "no", "loan": "no", "contact": "unknown", "day": 6, "month": "jun", "duration": 69, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
242
|
-
{ "age": 51, "job": "unemployed", "marital": "married", "education": "tertiary", "default": "no", "balance": 1634, "housing": "yes", "loan": "no", "contact": "cellular", "day": 22, "month": "jul", "duration": 168, "campaign": "4", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
243
|
-
{ "age": 34, "job": "admin.", "marital": "single", "education": "secondary", "default": "no", "balance": 1, "housing": "yes", "loan": "no", "contact": "cellular", "day": 22, "month": "jul", "duration": 483, "campaign": "7", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
244
|
-
{ "age": 50, "job": "self-employed", "marital": "married", "education": "tertiary", "default": "no", "balance": 4012, "housing": "no", "loan": "no", "contact": "cellular", "day": 19, "month": "nov", "duration": 690, "campaign": "3", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
245
|
-
{ "age": 44, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 3762, "housing": "no", "loan": "no", "contact": "cellular", "day": 28, "month": "aug", "duration": 125, "campaign": "12", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
246
|
-
{ "age": 27, "job": "admin.", "marital": "married", "education": "secondary", "default": "no", "balance": -247, "housing": "yes", "loan": "yes", "contact": "unknown", "day": 4, "month": "jun", "duration": 344, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
247
|
-
{ "age": 50, "job": "blue-collar", "marital": "married", "education": "secondary", "default": "no", "balance": 606, "housing": "yes", "loan": "no", "contact": "unknown", "day": 14, "month": "may", "duration": 673, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
248
|
-
{ "age": 36, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 0, "housing": "yes", "loan": "no", "contact": "cellular", "day": 28, "month": "jan", "duration": 60, "campaign": "1", "pdays": "250", "previous": "1", "poutcome": "other", "y": "no" },
|
|
249
|
-
{ "age": 42, "job": "management", "marital": "married", "education": "secondary", "default": "no", "balance": -189, "housing": "yes", "loan": "no", "contact": "unknown", "day": 12, "month": "may", "duration": 247, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
250
|
-
{ "age": 32, "job": "unemployed", "marital": "single", "education": "secondary", "default": "no", "balance": 0, "housing": "no", "loan": "no", "contact": "cellular", "day": 27, "month": "may", "duration": 123, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
251
|
-
{ "age": 42, "job": "management", "marital": "married", "education": "tertiary", "default": "no", "balance": 484, "housing": "yes", "loan": "no", "contact": "cellular", "day": 11, "month": "jul", "duration": 144, "campaign": "2", "pdays": "-1", "previous": "0", "poutcome": "unknown", "y": "no" },
|
|
252
|
-
];
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { Row } from "../../grid/row.js";
|
|
3
|
-
import { Cell } from "../../grid/cell.js";
|
|
4
|
-
import { RowFullWidth } from "../../grid/row-full-width.js";
|
|
5
|
-
export const RowHandler = (props) => {
|
|
6
|
-
return props.rows.map((row) => {
|
|
7
|
-
if (row.kind === "full-width")
|
|
8
|
-
return _jsx(RowFullWidth, { row: row }, row.id);
|
|
9
|
-
return _jsx(Memo, { row: row, withStyles: props.withStyles, pinned: props.pinned }, row.id);
|
|
10
|
-
});
|
|
11
|
-
};
|
|
12
|
-
function RowFor({ row, withStyles, pinned, }) {
|
|
13
|
-
const styles = withStyles
|
|
14
|
-
? {
|
|
15
|
-
background: pinned
|
|
16
|
-
? "light-dark(rgb(200,200,200), rgb(0,0,60))"
|
|
17
|
-
: row.rowIndex % 2 === 0
|
|
18
|
-
? "light-dark(white, rgb(0,0,0))"
|
|
19
|
-
: "light-dark(rgb(252, 243, 243), rgb(30,30,30))",
|
|
20
|
-
color: "light-dark(black, white)",
|
|
21
|
-
display: "flex",
|
|
22
|
-
alignItems: "center",
|
|
23
|
-
borderTop: row.rowIndex !== 0 ? "1px solid light-dark(gray, #444242)" : undefined,
|
|
24
|
-
borderRight: "1px solid light-dark(gray, #444242)",
|
|
25
|
-
paddingInline: "16px",
|
|
26
|
-
}
|
|
27
|
-
: undefined;
|
|
28
|
-
return (_jsx(Row, { row: row, accepted: ["row"], children: row.cells.map((cell) => {
|
|
29
|
-
return _jsx(Cell, { cell: cell, style: styles }, cell.id);
|
|
30
|
-
}) }));
|
|
31
|
-
}
|
|
32
|
-
const Memo = RowFor;
|