@draftbit/core 46.11.1-c81e7d.2 → 46.11.1-ca634b.2
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/lib/commonjs/components/DeckSwiper/DeckSwiper.js +1 -1
- package/lib/commonjs/components/DeckSwiper/DeckSwiper.js.map +1 -1
- package/lib/commonjs/components/Picker/Picker.js +13 -4
- package/lib/commonjs/components/Picker/Picker.js.map +1 -1
- package/lib/commonjs/components/Shadow.js +10 -2
- package/lib/commonjs/components/Shadow.js.map +1 -1
- package/lib/commonjs/components/Surface.js +1 -1
- package/lib/commonjs/components/Surface.js.map +1 -1
- package/lib/commonjs/components/TabView/TabView.js +1 -1
- package/lib/commonjs/components/TabView/TabView.js.map +1 -1
- package/lib/commonjs/mappings/DeckSwiper.js +2 -2
- package/lib/commonjs/mappings/DeckSwiper.js.map +1 -1
- package/lib/commonjs/mappings/NativeBase/Layout.js +1 -1
- package/lib/commonjs/mappings/NativeBase/Layout.js.map +1 -1
- package/lib/commonjs/mappings/Shadow.js +2 -2
- package/lib/commonjs/mappings/Shadow.js.map +1 -1
- package/lib/commonjs/mappings/Table.js +3 -3
- package/lib/commonjs/mappings/Table.js.map +1 -1
- package/lib/module/components/Accordion/AccordionGroup.js.map +1 -1
- package/lib/module/components/DeckSwiper/DeckSwiper.js +1 -1
- package/lib/module/components/DeckSwiper/DeckSwiper.js.map +1 -1
- package/lib/module/components/Picker/Picker.js +13 -4
- package/lib/module/components/Picker/Picker.js.map +1 -1
- package/lib/module/components/Shadow.js +10 -2
- package/lib/module/components/Shadow.js.map +1 -1
- package/lib/module/components/Surface.js +1 -1
- package/lib/module/components/Surface.js.map +1 -1
- package/lib/module/components/TabView/TabView.js +1 -1
- package/lib/module/components/TabView/TabView.js.map +1 -1
- package/lib/module/mappings/DeckSwiper.js +3 -3
- package/lib/module/mappings/DeckSwiper.js.map +1 -1
- package/lib/module/mappings/NativeBase/Layout.js +1 -1
- package/lib/module/mappings/NativeBase/Layout.js.map +1 -1
- package/lib/module/mappings/Shadow.js +3 -3
- package/lib/module/mappings/Shadow.js.map +1 -1
- package/lib/module/mappings/Table.js +3 -3
- package/lib/module/mappings/Table.js.map +1 -1
- package/lib/typescript/src/components/Picker/Picker.d.ts.map +1 -1
- package/lib/typescript/src/components/Shadow.d.ts.map +1 -1
- package/lib/typescript/src/mappings/DeckSwiper.d.ts +1 -1
- package/lib/typescript/src/mappings/DeckSwiper.d.ts.map +1 -1
- package/lib/typescript/src/mappings/Shadow.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/components/DeckSwiper/DeckSwiper.js +1 -1
- package/src/components/DeckSwiper/DeckSwiper.tsx +1 -1
- package/src/components/Picker/Picker.js +16 -4
- package/src/components/Picker/Picker.tsx +25 -5
- package/src/components/Shadow.js +7 -2
- package/src/components/Shadow.tsx +10 -3
- package/src/components/Surface.js +1 -1
- package/src/components/Surface.tsx +1 -1
- package/src/components/TabView/TabView.js +1 -1
- package/src/components/TabView/TabView.tsx +1 -1
- package/src/mappings/DeckSwiper.js +7 -3
- package/src/mappings/DeckSwiper.ts +7 -3
- package/src/mappings/NativeBase/Layout.js +1 -1
- package/src/mappings/NativeBase/Layout.ts +1 -1
- package/src/mappings/Shadow.js +10 -3
- package/src/mappings/Shadow.ts +10 -3
- package/src/mappings/Table.js +3 -3
- package/src/mappings/Table.ts +3 -3
package/src/mappings/Table.js
CHANGED
|
@@ -55,7 +55,7 @@ export const SEED_DATA = [
|
|
|
55
55
|
name: "Table",
|
|
56
56
|
tag: "Table",
|
|
57
57
|
description: "Top level table container",
|
|
58
|
-
category: COMPONENT_TYPES.table
|
|
58
|
+
category: COMPONENT_TYPES.testing /*.table*/,
|
|
59
59
|
stylesPanelSections: [
|
|
60
60
|
StylesPanelSections.Size,
|
|
61
61
|
StylesPanelSections.Margins,
|
|
@@ -101,7 +101,7 @@ export const SEED_DATA = [
|
|
|
101
101
|
name: "Table Row",
|
|
102
102
|
tag: "TableRow",
|
|
103
103
|
description: "Table Row container",
|
|
104
|
-
category: COMPONENT_TYPES.table
|
|
104
|
+
category: COMPONENT_TYPES.testing /*.table*/,
|
|
105
105
|
stylesPanelSections: [StylesPanelSections.Background],
|
|
106
106
|
props: {
|
|
107
107
|
...SHARED_SEED_DATA_PROPS,
|
|
@@ -124,7 +124,7 @@ export const SEED_DATA = [
|
|
|
124
124
|
name: "Table Cell",
|
|
125
125
|
tag: "TableCell",
|
|
126
126
|
description: "Table Cell container",
|
|
127
|
-
category: COMPONENT_TYPES.table
|
|
127
|
+
category: COMPONENT_TYPES.testing /*.table*/,
|
|
128
128
|
stylesPanelSections: [
|
|
129
129
|
StylesPanelSections.LayoutFlexItems,
|
|
130
130
|
StylesPanelSections.LayoutSelectedItem,
|
package/src/mappings/Table.ts
CHANGED
|
@@ -73,7 +73,7 @@ export const SEED_DATA = [
|
|
|
73
73
|
name: "Table",
|
|
74
74
|
tag: "Table",
|
|
75
75
|
description: "Top level table container",
|
|
76
|
-
category: COMPONENT_TYPES.table
|
|
76
|
+
category: COMPONENT_TYPES.testing /*.table*/,
|
|
77
77
|
stylesPanelSections: [
|
|
78
78
|
StylesPanelSections.Size,
|
|
79
79
|
StylesPanelSections.Margins,
|
|
@@ -120,7 +120,7 @@ export const SEED_DATA = [
|
|
|
120
120
|
name: "Table Row",
|
|
121
121
|
tag: "TableRow",
|
|
122
122
|
description: "Table Row container",
|
|
123
|
-
category: COMPONENT_TYPES.table
|
|
123
|
+
category: COMPONENT_TYPES.testing /*.table*/,
|
|
124
124
|
stylesPanelSections: [StylesPanelSections.Background],
|
|
125
125
|
props: {
|
|
126
126
|
...SHARED_SEED_DATA_PROPS,
|
|
@@ -144,7 +144,7 @@ export const SEED_DATA = [
|
|
|
144
144
|
name: "Table Cell",
|
|
145
145
|
tag: "TableCell",
|
|
146
146
|
description: "Table Cell container",
|
|
147
|
-
category: COMPONENT_TYPES.table
|
|
147
|
+
category: COMPONENT_TYPES.testing /*.table*/,
|
|
148
148
|
stylesPanelSections: [
|
|
149
149
|
StylesPanelSections.LayoutFlexItems,
|
|
150
150
|
StylesPanelSections.LayoutSelectedItem,
|